Memory<T>.ToString 方法

定义

返回此 Memory<T> 对象的字符串表示形式。

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

返回

String

Memory<T> 对象的字符串表示形式。

注解

For a Memory<Char>, the ToString method returns a String that contains the characters pointed to by the Memory<T>. 否则,它将返回 String 类型名称以及包含的元素 Memory<T> 数。

适用于