Ler en inglés

Compartir por


Nullable<T>.ToString Método

Definición

Devuelve la representación de texto del valor del objeto Nullable<T> actual.

C#
public override string ToString ();
C#
public override string? ToString ();

Devoluciones

String

Representación de texto del valor del objeto Nullable<T> actual si la propiedad HasValue es true, o una cadena vacía ("") si la propiedad HasValue es false.

Ejemplos

En el ejemplo de código siguiente se muestra el valor del objeto actual Nullable<T> .

C#
// 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.

*/

Comentarios

La ToString propiedad devuelve la cadena que se produce llamando a la ToString propiedad del objeto devuelto por la Value propiedad .

Se aplica a

Produto Versións
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0