Click or drag to resize

UnitsSplit Method

Split a string representation of a Vector3 (e.g. "1.1,1.2,1.3" or "1.1;1.2;1.3") using the Current Culture's "list separator" character into the individual components.

Fall back to trying the Invariant Culture separator (",") if different to the Current Culture one.

Namespace:  Demo3D.Utilities
Assembly:  Demo3D.Common (in Demo3D.Common.dll) Version: 11.0.0.7658
Syntax
C#
public static string[] Split(
	string text
)

Parameters

text
Type: SystemString
Text to split.

Return Value

Type: String
Array of 3 strings returned after the split.
See Also