Vector3D.ToString メソッド

定義

この String 構造体の Vector3D 表現を作成します。

オーバーロード

ToString()

この String 構造体の Vector3D 表現を作成します。

ToString(IFormatProvider)

この String 構造体の Vector3D 表現を作成します。

ToString()

この String 構造体の Vector3D 表現を作成します。

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

戻り値

この X 構造体の YZVector3D の各値を格納する文字列。

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

適用対象

ToString(IFormatProvider)

この String 構造体の 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

パラメーター

provider
IFormatProvider

カルチャ固有の書式設定情報。

戻り値

この String 構造体の XYZ の各値を格納する Vector3D を返します。

適用対象