Compartilhar via


Vector3D.ToString Método

Definição

Cria uma representação String desta estrutura Vector3D.

Sobrecargas

ToString()

Cria uma representação String desta estrutura Vector3D.

ToString(IFormatProvider)

Cria uma representação String desta estrutura Vector3D.

ToString()

Cria uma representação String desta estrutura Vector3D.

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

Retornos

String

Uma cadeia de caracteres contendo os valores X, Y e Z dessa estrutura Vector3D.

Exemplos

// 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

Aplica-se a

ToString(IFormatProvider)

Cria uma representação String desta estrutura Vector3D.

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

Parâmetros

provider
IFormatProvider

Informações de formatação específicas da cultura.

Retornos

String

Retorna um String que contém os valores X, Y e Z desta estrutura Vector3D.

Aplica-se a