4 references to Length
System.Private.Windows.Core (4)
Windows.Win32.PCSTR.g.cs (2)
68
public override string ToString() => this.Value is null ? null : new string((sbyte*)this.Value, 0, this.
Length
, global::System.Text.Encoding.Default);
74
internal ReadOnlySpan<byte> AsSpan() => this.Value is null ? default(ReadOnlySpan<byte>) : new ReadOnlySpan<byte>(this.Value, this.
Length
);
Windows.Win32.PSTR.g.cs (2)
56
/// <inheritdoc cref="PCSTR.
Length
"/>
57
internal int Length => new PCSTR(this.Value).
Length
;