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 Constructor

Initializes a new instance of the StringTable class.

Overload List

Creates a new StringTable with the default capacity and the default maximum load factor.

[Visual Basic] Overloads Public Sub New()
[C#] public StringTable();
[C++] public: StringTable();
[JScript] public function StringTable();

Creates a new StringTable with the specified initial capacity and the default load factor.

[Visual Basic] Overloads Public Sub New(Integer)
[C#] public StringTable(int);
[C++] public: StringTable(int);
[JScript] public function StringTable(int);

Creates a new StringTable with the specified initial capacity and the specified load factor.

[Visual Basic] Overloads Public Sub New(Integer, Single)
[C#] public StringTable(int, float);
[C++] public: StringTable(int, float);
[JScript] public function StringTable(int, float);

See Also

StringTable Class | StringTable Members | System.Collections Namespace