operator=()
String::operator=(const String&) method
Assignment operator.
String & System::String::operator=(const String &str)
Arguments
Parameter | Type | Description |
---|---|---|
str | const String& | String to copy. |
Return Value
Self reference.
String::operator=(String&&) method
Move assignment operator.
String & System::String::operator=(String &&str) noexcept
Arguments
Parameter | Type | Description |
---|---|---|
str | String&& | String to move data from. |
Return Value
Self reference.
See Also
- Class String
- Namespace System
- Library Aspose.Slides