Convertire i tipi .NET in stringhe
Per convertire un tipo .NET in una stringa, usare il metodo ToString. cheToString restituisce una rappresentazione di stringa del tipo passato. Nella tabella seguente sono elencati i tipi .NET che restituiscono una stringa in un formato corrispondente alle specifiche XML Schema (XSD).
Tipo .NET | Tipo di stringa restituito |
---|---|
Booleano | "true", "false" |
Single.PositiveInfinity | "INF" |
Single.NegativeInfinity | "-INF" |
Double.PositiveInfinity | "INF" |
Double.NegativeInfinity | "-INF" |
Data/Ora | Il formato è yyyy-MM-ddTHH:mm:sszzzzzz e i relativi subset. |
TimeSpan | Il formato è PnYnMnTnHnMnSad esempio, P2Y10M15DT10H30M20S corrisponde a una durata di 2 anni, 10 mesi, 15 giorni, 10 ore, 30 minuti e 20 secondi. |
Vedi anche
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.