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 Constructor (Char, Int32)

Initializes an instance of the string class with a specified character.

[Visual Basic]
Overloads Public Sub New( _
   ByVal c As Char, _
   ByVal count As Integer _
)
[C#]
public String(
   char c,
   int count
);
[C++]
public: String(
   __wchar_t c,
   int count
);
[JScript]
public function String(
   c : Char,
   count : int
);

Parameters

c
The character from which the string is to be created.
count
[To be supplied.]

Remarks

This constructor initializes an instance of the String class with a specified character from which to create the string.

See Also

String Class | String Members | System Namespace | String Constructor Overload List | Array | Char | Int32