System::ReadOnlyMemory::ToString method

ReadOnlyMemory::ToString() const method

Converts the character read-only memory to a string representation.

template<typename T1> std::enable_if<std::is_same<T1, char16_t>::value, String>::type System::ReadOnlyMemory<T>::ToString() const

ReturnValue

A string representing the memory.

See Also

ReadOnlyMemory::ToString() const method

Converts the ordinary read-only memory to a string representation.

template<typename T1> std::enable_if<!std::is_same<T1, char16_t>::value, String>::type System::ReadOnlyMemory<T>::ToString() const

ReturnValue

A string representing the memory.

See Also