- doubleArray
- Array of double values to be converted.
| Visual Basic (Declaration) | |
|---|---|
Public Shared Function FromDoubleArray( _ ByVal doubleArray() As Double _ ) As Point3D | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim doubleArray() As Double Dim value As Point3D value = Point3D.FromDoubleArray(doubleArray) | |
| C# | |
|---|---|
public static Point3D FromDoubleArray( double[] doubleArray ) | |
| C++/CLI | |
|---|---|
public: static Point3D FromDoubleArray( array<double>^ doubleArray ) | |
Parameters
- doubleArray
- Array of double values to be converted.
Return Value
Point3D that represents the convert double array.Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code