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 (String)

OBSOLETE. Use Copy if you need a copy.

Initializes an instance of the string class that is a copy of a specified value.

[Visual Basic]
Overloads Public Sub New( _
   ByVal value As String _
)
[C#]
public String(
   string value
);
[C++]
public: String(
   String* value
);
[JScript]
public function String(
   value : String
);

Parameters

value
The string to be copied.

Remarks

If value is null, a string initialized to the Empty is created.

See Also

String Class | String Members | System Namespace | String Constructor Overload List | Empty