Conversione dei tipi di .NET Framework in stringhe
Per convertire un tipo .NET Framework in una stringa, utilizzare il metodo ToString, che restituisce una rappresentazione di stringa del tipo passato. Nella tabella seguente sono elencati i tipi .NET Framework che restituiscono una stringa in un formato corrispondente alle specifiche XML Schema (XSD).
Tipo .NET Framework |
Tipo di stringa restituito |
---|---|
Boolean |
"true", "false" |
Single.PositiveInfinity |
"INF" |
Single.NegativeInfinity |
"-INF" |
Double.PositiveInfinity |
"INF" |
Double.NegativeInfinity |
"-INF" |
DateTime |
Il formato è yyyy-MM-ddTHH:mm:sszzzzzz e i relativi subset. |
TimeSpan |
Il formato è PnYnMnTnHnMnS ad esempio, P2Y10M15DT10H30M20S corrisponde a una durata di 2 anni, 10 mesi, 15 giorni, 10 ore, 30 minuti e 20 secondi. |
Vedere anche
Concetti
Conversione dei tipi di dati XML
Conversione delle stringhe in tipi di dati di .NET Framework