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!

StringTable.ToArray

Copies the strings in the StringTable into a new array.

[Visual Basic]
Overridable Public Function ToArray() As String ()
[C#]
public virtual string[] ToArray();
[C++]
public: virtual String* ToArray() [];
[JScript]
public function ToArray() : String[];

Return Value

An array of String objects containing copies of the strings from the StringTable.

Remarks

This method can be overridden by a derived class.

The order of the elements in the new array is the same as the order of the elements in the StringTable.

See Also

StringTable Class | StringTable Members | System.Collections Namespace | String