Vector3D.ToString Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
ToString() |
Crea una rappresentazione String di questa struttura Vector3D. |
ToString(IFormatProvider) |
Crea una rappresentazione String di questa struttura Vector3D. |
ToString()
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
Restituisce
Stringa che contiene i valori X, Y, e Z di questa struttura Vector3D.
Esempio
// Gets a string representation of the structure
Vector3D vector1 = new Vector3D(20, 30, 40);
String vectorString;
vectorString = vector1.ToString();
// vectorString is equal to 20, 30, 40
' Gets a string representation of the structure
Dim vector1 As New Vector3D(20, 30, 40)
Dim vectorString As String
vectorString = vector1.ToString()
' vectorString is equal to 20, 30, 40
Si applica a
ToString(IFormatProvider)
public:
System::String ^ ToString(IFormatProvider ^ provider);
public string ToString (IFormatProvider provider);
override this.ToString : IFormatProvider -> string
Public Function ToString (provider As IFormatProvider) As String
Parametri
- provider
- IFormatProvider
Informazioni di formattazione specifiche delle impostazioni cultura.
Restituisce
Restituisce un oggetto String contenente i valori X, Y e Z di questa struttura Vector3D.