Funzione NullableOperators.( ?=? )<'T> (F#)

L'operatore = in cui un valore NULL appare su entrambi lati sinistro e destro.

Namespace/Module Path: Microsoft.FSharp.Linq.NullableOperators

Assembly: FSharp.Core (in FSharp.Core.dll)

// Signature:
( ?=? ) : Nullable<'T> -> Nullable<'T> -> bool when 'T : equality and 'T : (new : unit ->  'T) and 'T : struct and 'T :> ValueType

// Usage:
 nullableValue1 ?=? nullableValue2

Parametri

  • nullableValue1
    Tipo: Nullable<T>

    Il primo valore di input, come valore NULL.

  • nullableValue2
    Tipo: Nullable<T>

    Il secondo valore di input, come valore NULL.

Valore restituito

True se i valori di input sono numericamente uguali.

Note

Se uno dei valori è null, il risultato è false. Anche se entrambi i lati null, il risultato è false.

Piattaforme

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

Informazioni sulla versione

Versioni della libreria di base F#

Supportato in: 4,0, portabile

Vedere anche

Riferimenti

Modulo Linq.NullableOperators (F#)

Spazio dei nomi Microsoft.FSharp.Linq (F#)