Nullable<T>.ToString Method
.NET Framework 4.5
Returns the text representation of the value of the current Nullable<T> object.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.StringThe text representation of the value of the current Nullable<T> object if the HasValue property is true, or an empty string ("") if the HasValue property is false.
The ToString property returns the string yielded by calling the ToString property of the object returned by the Value property.
The following code example displays the value of the current Nullable<T> object.
// This code example demonstrates the // Nullable<T>.ToString method. using System; class Sample { public static void Main() { DateTime? nullableDate; // Display the current date and time. nullableDate = DateTime.Now; Display("1)", nullableDate); // Assign null (Nothing in Visual Basic) to nullableDate, then // display its value. nullableDate = null; Display("2)", nullableDate); } // Display the text representation of a nullable DateTime. public static void Display(string title, DateTime? dspDT) { string msg = dspDT.ToString(); Console.Write("{0} ", title); if (String.IsNullOrEmpty(msg)) Console.WriteLine("The nullable DateTime has no defined value."); else Console.WriteLine("The current date and time is {0}.", msg); } } /* This code example produces the following results: 1) The current date and time is 4/19/2005 8:28:14 PM. 2) The nullable DateTime has no defined value. */
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.