If string.Empty != null why string.IsNullOrEmpty() is created?
I just want to say that:
if null and string.Empty are different to each other.
- why
string.IsNull();andstring.IsEmpty();separate methods does not exist. - why a combined method
string.IsNullOrEmpty()exists?