Nullable<T>.ToString Method ()
.NET Framework (current version)
Returns the text representation of the value of the current Nullable<T> object.
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. */
Universal Windows Platform
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 2.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: