NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

String.ToCharArray ()

Returns a copy of this string as an array of characters.

[Visual Basic]
Overloads Public Function ToCharArray() As Char ()
[C#]
public char[] ToCharArray();
[C++]
public: __wchar_t* ToCharArray() [];
[JScript]
public function ToCharArray() : Char[];

Return Value

Returns a copy of this string as an array of characters.

Remarks

The ToCharArray method makes a copy of an entire string and returns it as an array of characters.

See Also

String Class | String Members | System Namespace | String.ToCharArray Overload List | Char | Array