StringInfo.String Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the value of the current StringInfo object.
public:
property System::String ^ String { System::String ^ get(); void set(System::String ^ value); };
public string String { get; set; }
member this.String : string with get, set
Public Property String As String
Property Value
The string that is the value of the current StringInfo object.
Exceptions
The value in a set operation is null
.
Remarks
When a StringInfo object is instantiated, its String property is set to one of the following values:
String.Empty if the default StringInfo() is called. You should then use the String property to assign the string that this StringInfo object rperesents.
The string supplied as the
value
argument to the StringInfo(String) constructor.