Is there a VB.NET equivalent for C#'s ?? operator?

link|improve this question

feedback

4 Answers

up vote 42 down vote accepted

If()

link|improve this answer
IF is the coalesce operator in VB – Nick Dec 31 '08 at 16:53
9  
+1, I didn't know this! (OTOH, I've been trying to leave VB.NET behind me ... ) – John Rudy Dec 31 '08 at 17:03
feedback

IF() operator should do the trick for you

value = If(nullable, defaultValueIfNull)

http://visualstudiomagazine.com/listings/list.aspx?id=252

link|improve this answer
feedback

You can use an extension method. This one works like SQL Coalesce, and is probably overkill for what you are trying to test, but works.

    ''' <summary>
    ''' Returns the first non-null T based on a collection of the root object and the args.
    ''' </summary>
    ''' <param name="obj"></param>
    ''' <param name="args"></param>
    ''' <returns></returns>
    ''' <remarks>Usage
    ''' Dim val as String = "MyVal"
    ''' Dim result as String = val.Coalesce(String.Empty)
    ''' *** returns "MyVal"
    ''' 
    ''' val = Nothing
    ''' result = val.Coalesce(String.Empty, "MyVal", "YourVal")
    ''' *** returns String.Empty
    ''' 
    ''' </remarks>
    <System.Runtime.CompilerServices.Extension()> _
    Public Function Coalesce(Of T)(ByVal obj As T, ByVal ParamArray args() As T) As T

        If obj IsNot Nothing Then
            Return obj
        End If

        Dim arg As T
        For Each arg In args
            If arg IsNot Nothing Then
                Return arg
            End If
        Next

        Return Nothing

    End Function
link|improve this answer
Downvote and no comments... – StingyJack Dec 31 '08 at 16:57
2  
Because the language has a built in operator. No reason to even look at extension methods. – Nick Dec 31 '08 at 16:59
4  
Voting isn't strictly tied to "right" or "wrong", but to "helpful" or "not helpful". It's possible to have a correct solution that people find not-helpful, but some other people may find it helpful and vote you back up. – Andrew Coleson Dec 31 '08 at 17:11
2  
-1 for StingyJack's whining. :) – TheSoftwareJedi Jan 1 '09 at 5:59
1  
Thank You. Where is my Wahhhh-mbulance???? – StingyJack Jan 2 '09 at 19:12
show 4 more comments
feedback

I'm wondering if the OP isn't looking for IIF instead of if()...

IIF is specified as:

iif({condition}, {true result}, {false result})

This would seem to better emulate what the ? operator in C# does.

link|improve this answer
He asked about the "??" operator, not the "?" operator. – TheSoftwareJedi Jan 1 '09 at 5:59
1  
I do apologize. I guess you learn something new every day (never knew that there was an ?? operator that worked the same as a simple If statement) Good to know. – Richard B Jan 1 '09 at 6:12
feedback

Your Answer

 
or
required, but never shown

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