Vector3D.Parse(String) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
public:
static System::Windows::Media::Media3D::Vector3D Parse(System::String ^ source);
public static System.Windows.Media.Media3D.Vector3D Parse (string source);
static member Parse : string -> System.Windows.Media.Media3D.Vector3D
Public Shared Function Parse (source As String) As Vector3D
Parametreler
Döndürülenler
Vector3D Eşdeğer yapı.
Örnekler
Aşağıdaki örnekte, bir vector3D'nin Vector3D dize gösterimini bir yapıya dönüştürmek için yönteminin nasıl kullanılacağı Parse gösterilmektedir.
// Converts a string representation of a vector into a Vector3D structure
Vector3D vectorResult = new Vector3D();
vectorResult = Vector3D.Parse("1,3,5");
// vectorResult is equal to (1, 3, 5)
' Converts a string representation of a vector into a Vector3D structure
Dim vectorResult As New Vector3D()
vectorResult = Vector3D.Parse("1,3,5")
' vectorResult is equal to (1, 3, 5)