vote up 2 vote down star

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

flag

78% accept rate

4 Answers

vote up 9 vote down check

If()

link|flag
IF is the coalesce operator in VB – Nick Dec 31 '08 at 16:53
+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
vote up 6 vote down

IF() operator should do the trick for you

value = If(nullable, defaultValueIfNull)

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

link|flag
vote up -1 vote down

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|flag
Downvote and no comments... – StingyJack Dec 31 '08 at 16:57
Because the language has a built in operator. No reason to even look at extension methods. – Nick Dec 31 '08 at 16:59
I'm not going to repeat someone else's answer. I figured that it may be nice to provide an alternate solution if you need to check multiple values with a single statement. Since its not a WRONG answer, then should it be downvoted? – StingyJack Dec 31 '08 at 17:08
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
I know. Its just irritating. There should be some comment required when downvoting an item that is not helpful or correct. – StingyJack Dec 31 '08 at 17:13
show 2 more comments
vote up -1 vote down

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|flag
He asked about the "??" operator, not the "?" operator. – TheSoftwareJedi Jan 1 '09 at 5:59
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

Your Answer

Get an OpenID
or

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