Sdílet prostřednictvím


Point4D.ToString Metoda

Definice

Vytvoří reprezentaci String této Point4D struktury.

Přetížení

ToString()

Vytvoří reprezentaci String této Point4D struktury.

ToString(IFormatProvider)

Vytvoří reprezentaci String této Point4D struktury.

ToString()

Vytvoří reprezentaci String této Point4D struktury.

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Návraty

String

String Vrátí hodnotu obsahující Xhodnotu , , ZYa W hodnoty této Point4D struktury.

Příklady

Následující příklad ukazuje, jak získat řetězcovou reprezentaci Point4D struktury.

// Gets a string representation of the structure
Point4D point1 = new Point4D(10, 5, 1, 4);
String pointString;

pointString = point1.ToString();
// matrixString is equal to 10, 5, 1, 4

// Displaying Results
syntaxString = "pointString = point1.ToString();";
resultType = "String";
operationString = "Getting the string representation of a Point4D";
ShowResults(pointString.ToString(), syntaxString, resultType, operationString);
' Gets a string representation of the structure
Dim point1 As New Point4D(10, 5, 1, 4)
Dim pointString As String

pointString = point1.ToString()
' matrixString is equal to 10, 5, 1, 4

' Displaying Results
syntaxString = "pointString = point1.ToString()"
resultType = "String"
operationString = "Getting the string representation of a Point4D"
ShowResults(pointString.ToString(), syntaxString, resultType, operationString)

Platí pro

ToString(IFormatProvider)

Vytvoří reprezentaci String této Point4D struktury.

public:
 System::String ^ ToString(IFormatProvider ^ provider);
public string ToString (IFormatProvider provider);
override this.ToString : IFormatProvider -> string
Public Function ToString (provider As IFormatProvider) As String

Parametry

provider
IFormatProvider

Informace o formátování specifické pro jazykovou verzi

Návraty

String

String Vrátí hodnotu obsahující Xhodnotu , , ZYa W hodnoty této Point4D struktury.

Příklady

Následující příklad ukazuje, jak získat řetězcovou reprezentaci Point4D struktury.

// Gets a string representation of the structure
Point4D point1 = new Point4D(10, 5, 1, 4);
String pointString;

pointString = point1.ToString();
// matrixString is equal to 10, 5, 1, 4

// Displaying Results
syntaxString = "pointString = point1.ToString();";
resultType = "String";
operationString = "Getting the string representation of a Point4D";
ShowResults(pointString.ToString(), syntaxString, resultType, operationString);
' Gets a string representation of the structure
Dim point1 As New Point4D(10, 5, 1, 4)
Dim pointString As String

pointString = point1.ToString()
' matrixString is equal to 10, 5, 1, 4

' Displaying Results
syntaxString = "pointString = point1.ToString()"
resultType = "String"
operationString = "Getting the string representation of a Point4D"
ShowResults(pointString.ToString(), syntaxString, resultType, operationString)

Platí pro