Proprietà Nullable.Value
Ottiene il valore del valore Nullable corrente.

Spazio dei nomi: System
Assembly: mscorlib (in mscorlib.dll)

Sintassi

Visual Basic - (Dichiarazione)
Public ReadOnly Property Value As T
Visual Basic (Utilizzo)
Dim instance As Nullable(Of T)
Dim value As T

value = instance.Value
C#
public T Value { get; }
C++
public:
property T Value {
    T get ();
}
J#
/** @property */
public T get_Value ()
JScript
public function get Value () : T
XAML
Non applicabile.

Valore proprietà

Valore dell'oggetto Nullable corrente se la proprietà HasValue è true. Se la proprietà HasValue è false viene generata un'eccezione.
Eccezioni

Tipo di eccezioneCondizione

InvalidOperationException

La proprietà HasValue è false.

Esempio

Nell'esempio di codice riportato di seguito viene restituito il valore di un oggetto Nullable se per tale oggetto è definito un valore; in caso contrario viene restituito un valore predefinito.

Visual Basic
' This code example demonstrates the Nullable(Of T).HasValue 
' and Value properties.

Imports System

Class Sample
    Public Shared Sub Main() 
        Dim myNow As Nullable(Of DateTime)

    '  Assign the current date and time to myNow then display its value.
        myNow = DateTime.Now
        Display(myNow, "1) ")
        
    '  Assign null (Nothing in Visual Basic) to myNow then display its value.
        myNow = Nothing
        Display(myNow, "2) ")
    End Sub 'Main
    
    ' Display the date and time.
    Public Shared Sub Display(ByVal displayDateTime As Nullable(Of DateTime), _
                              ByVal title As String) 

    ' If the HasValue property for the nullable of DateTime input argument is true, 
    ' display the value of the input argument; otherwise, display that no value is
    ' defined for the input value.
        Console.Write(title)
        If displayDateTime.HasValue = True Then
            Console.WriteLine("The date and time is {0:F}.", displayDateTime.Value)
        Else
            Console.WriteLine("The date and time is not defined.")
        End If
    End Sub 'Display 

End Class 'Sample '

'This code example produces the following results:
'
'1) The date and time is Tuesday, April 19, 2005 4:16:06 PM.
'2) The date and time is not defined.
'
C#
// This code example demonstrates the Nullable<T>.HasValue 
// and Value properties.

using System;

class Sample 
{
    public static void Main() 
    {
    DateTime? myNow;

//  Assign the current date and time to myNow then display its value.
    myNow = DateTime.Now;
    Display(myNow, "1) ");

//  Assign null (Nothing in Visual Basic) to myNow then display its value.
    myNow = null;
    Display(myNow, "2) ");
    }

// Display the date and time.
    public static void Display(DateTime? displayDateTime, string title)
    {
// If a value is defined for the displayDatetime argument, display its value; otherwise, 
// display that no value is defined.
    Console.Write(title);
    if (displayDateTime.HasValue == true)
        Console.WriteLine("The date and time is {0:F}.", displayDateTime.Value);
    else
        Console.WriteLine("The date and time is not defined.");
    }
}

/*
This code example produces the following results:

1) The date and time is Tuesday, April 19, 2005 4:16:06 PM.
2) The date and time is not defined.

*/
Piattaforme

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile per Pocket PC, Windows Mobile per Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

Microsoft .NET Framework 3.0 è supportato in Windows Vista, Microsoft Windows XP SP2 e Windows Server 2003 SP1.

Informazioni sulla versione

.NET Framework

Supportato in:

.NET Compact Framework

Supportato in:

XNA Framework

Supportato in:
Vedere anche

Tag :


Page view tracker