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)
14public bool IsNull => _value == null; 32public static implicit operator Utf8Span(Utf8String s) => s._value; 34public int Length => _value.Length; 36public ReadOnlySpan<byte> AsSpan() => _value; 40return Encoding.UTF8.GetString(_value); 50int length = _value.Length; 52fixed (byte* ap = _value)