How to compare nullable types?

后端 未结 8 1511
夕颜
夕颜 2021-01-31 13:32

I have a few places where I need to compare 2 (nullable) values, to see if they\'re the same.

I think there should be something in the framework to support this, but can

相关标签:
8条回答
  • 2021-01-31 14:17

    Use Compare:

    http://msdn.microsoft.com/en-us/library/dxxt7t2a.aspx

    0 讨论(0)
  • 2021-01-31 14:23

    C# supports "lifted" operators, so if the type (bool? in this case) is known at compile you should just be able to use:

    return x != y;
    

    If you need generics, then EqualityComparer<T>.Default is your friend:

    return !EqualityComparer<T>.Default.Equals(x,y);
    

    Note, however, that both of these approaches use the "null == null" approach (contrast to ANSI SQL). If you need "null != null" then you'll have to test that separately:

    return x == null || x != y;
    
    0 讨论(0)
提交回复
热议问题