Tagged Questions
The isnullorempty tag has no wiki summary.
11
votes
10answers
2k views
C# String.IsNullOrEmpty: good or bad?
After an incident at work where I misused String.IsNullOrEmpty with a Session variable, a fellow coworker of mine now refuses to accept my usage of String.IsNullOrEmpty. After some research, ...
3
votes
3answers
2k views
sqlite select where empty?
Select in sqlite where some_colum is empty.
empty counts as both NULL and "".
2
votes
3answers
166 views
?? operator in system.DBNull
Is there an operator or built in function to simplyfy this:
myVal = object1.object2.something(a,b).dataColumn.toString()==""?object1.object2.something(a,b).dataColumn.toString():"-";
I know i can ...
2
votes
4answers
280 views
string.IsNullOrEmpty() Doesn't Seem to Work on a String within a Class within a Class
First off, I think I know what's going on, but I thought I'd bring this issue up here for some discussion and see if anyone has an "answer" to this other than what I'm thinking. Because, it doesn't ...
2
votes
8answers
413 views
Can I safely ignore CodeAnalysis warning: replace string == “” with string.IsNullOrEmpty?
I've got code similar to this:
string s = CreateString();
if (s == "") foo(s);
If s equals "", foo should be called. If string is null, which should never happen, then a NullReferenceException is ...
1
vote
2answers
59 views
How can I check multiple textboxes if null or empty without a unique test for each?
I have about 20 text fields on a form that a user can fill out. I want to prompt the user to consider saving if they have anything typed into any of the text boxes. Right now the test for that is ...
1
vote
5answers
120 views
Does C# have IsNullOrEmpty for List/IEnumerable?
I know generally empty List is more prefer than NULL.
But I am going to return NULL, for mainly two reasons
has to perform explicitly check and handle on null value, avoid bug and attack.
easy to ...
1
vote
1answer
91 views
Why is there no Array.IsNullOrEmpty() method?
Can anyone point out a reason for the absence of a System.Array.IsNullOrEmpty(System.Array value), just like there is a System.String.IsNullOrEmpty(System.String value)?
I know you can easily define ...
0
votes
2answers
152 views
IsNullorEmpty combobox.selectedvalue
I am trying to set a combobox.selectedValue to a string which works but when its nullorempty it errors out. I have tried the following code to no avail:
if ...
0
votes
3answers
243 views
.NET built-in functin that combines String.IsNullOrEmpty and String.IsNullOrWhiteSpace
Is there a built-in function in .NET that combines both String.IsNullOrEmpty and String.IsNullorWhiteSpace?
I can easily write my own, but my question is why isn't there a ...