3 writes to _value
ILCompiler.ReadyToRun (3)
src\runtime\src\coreclr\tools\Common\Internal\Text\Utf8String.cs (3)
19
_value
= underlyingArray;
24
_value
= underlyingSpan.ToArray();
29
_value
= Encoding.UTF8.GetBytes(s);
7 references to _value
ILCompiler.ReadyToRun (7)
src\runtime\src\coreclr\tools\Common\Internal\Text\Utf8String.cs (7)
14
public bool IsNull =>
_value
== null;
32
public static implicit operator Utf8Span(Utf8String s) => s.
_value
;
34
public int Length =>
_value
.Length;
36
public ReadOnlySpan<byte> AsSpan() =>
_value
;
40
return Encoding.UTF8.GetString(
_value
);
50
int length =
_value
.Length;
52
fixed (byte* ap =
_value
)