vote up 0 vote down star

I've got an IF statement that validates data.

Basically looks like this:

Dim s As String = Nothing

If s Is Nothing Or s.Length = 0 Then
    Console.WriteLine("Please enter a value")
End If

Console.Read()

I'd like to check to see if it's nothing first because if I write it this way, it throws a NullReferenceException.

I've thought of re-writing it like this:

If s Is Nothing Then
    Console.WriteLine("Please enter a value")
ElseIf s.Length = 0 Then
    Console.WriteLine("Please enter a value")
End If

But if I do this I've got the same error message twice and I believe it's less clear what my intent is.

I've also tried throwing parenthesis around the s Is Nothing clause, but it doesn't work.

Is there an elegant what to test if the object is nothing and then test a property of it?

flag

78% accept rate

2 Answers

vote up 7 vote down check

.NET 2.0 introduced the OrElse keyword to do short-circuiting. What this means is that it will not evaluate the right-side of the OrElse if the left side is true. Other than that, it works exactly like Or.

The And equivalent is AndAlso, which will not evaluate the right side if the left side is false.

Dim s As String = Nothing

If s Is Nothing OrElse s.Length = 0 Then
    Console.WriteLine("Please enter a value")
End If

Console.Read()

should do what you want.

link|flag
True. However, this does not explain why his second code also throws a NullReference exception. In the ignorance of this keyword, his second code should be a valid workaround. – Daniel Daranas Oct 8 at 13:55
@Daniel Daranas: Hmm, that is true. I guess I just can't wrap my head around Is Nothing returning a NullReferenceException. – R. Bemrose Oct 8 at 13:56
Oops I think I misunderstood what the OP said. He says he "gets the same error message twice", probably refering to "Please enter a value". – Daniel Daranas Oct 8 at 13:58
Sorry if I was unclear, what I meant was that I get the NullReference only in the first example. In the second example I have to include the error message ("Please enter a value") twice, hence violating DRY. – Nathan Koop Oct 8 at 14:12
1  
@Daniel Daranas: You're right but OrElse is even better/more simple ;) – Meta-Knight Oct 8 at 14:36
show 2 more comments
vote up 4 vote down

you can use:

if (string.IsNullOrEmpty(s))
{
//do work
}
link|flag
I didn't think of that one. Good catch. – R. Bemrose Oct 8 at 13:55
yeah it is a nice method that makes the code look cleaner...and of course is only going to work for string.... – CSharpAtl Oct 8 at 13:56
@CSharpAtl: True, but it expresses the intent more clearly, and checks if it's String.Empty to boot. – R. Bemrose Oct 8 at 14:02
Thanks, this works but my example was a simplification of a more complex object. – Nathan Koop Oct 8 at 14:11
Yeah I threw this in because it works for your specific example.....but will not work on a generic object sense... – CSharpAtl Oct 8 at 14:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.