String.IsNullOrEmpty() Check for Space
- by Asim Sajjad
What does below statement return
String.IsNullOrEmpty(" ")
is IsNullOrEmpty will need to pass by applying Trim() function of string.
String.IsNullOrEmpty(" ".Trim())
or it will trim the string inside ?