Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 63 down vote accepted

If()

share|improve this answer
IF is the coalesce operator in VB – Nick Dec 31 '08 at 16:53
13  
+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

IF() operator should do the trick for you

value = If(nullable, defaultValueIfNull)

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

share|improve this answer

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
share|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
6  
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
2  
Thank You. Where is my Wahhhh-mbulance???? – StingyJack Jan 2 '09 at 19:12
show 4 more comments

No, there is not an equivalent to C#'s null coalescence. It does have a ternary operator (IF(condition,true,false)), which can be used to approximate it, but doesn't have an exact equivalent.

In particular, without using an intermediate variable, you can't avoid the possible incorrect results when a function has side effects.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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