String(const xmsSBYTE *value, const xmsINT length);
Create a String object from an array of bytes.
Method | Description |
---|---|
~String | Delete the String object. |
c_str | Get a pointer to the string encapsulated by the String object. |
concatenate | Concatenate the string encapsulated by the String object with the string encapsulated by a second String object. |
equalTo | Determine whether the string encapsulated by the String object is equal to the string encapsulated by a second String object. |
get | Get the string encapsulated by the String object. |
isNull | Determine whether the String object is a null object. |
String & concatenate(const String & string) const;
Concatenate the string encapsulated by the String object with the string encapsulated by a second String object.
xmsBOOL equalTo(const String & string) const;
Determine whether the string encapsulated by the String object is equal to the string encapsulated by a second String object.
xmsVOID get(xmsSBYTE *value, const xmsINT length, xmsINT *actualLength) const;
Get the string encapsulated by the String object.
For more information about how to use this method, see C++ methods that return a byte array.