16 references to ToCharsBuffer
System.Private.CoreLib (16)
src\libraries\System.Private.CoreLib\src\System\Enum.cs (15)
1560HexConverter.ToCharsBuffer(data, destination); 1567HexConverter.ToCharsBuffer((byte)(value >> 8), destination); 1568HexConverter.ToCharsBuffer((byte)value, destination, 2); 1578HexConverter.ToCharsBuffer((byte)(value >> 24), destination); 1579HexConverter.ToCharsBuffer((byte)(value >> 16), destination, 2); 1580HexConverter.ToCharsBuffer((byte)(value >> 8), destination, 4); 1581HexConverter.ToCharsBuffer((byte)value, destination, 6); 1591HexConverter.ToCharsBuffer((byte)(value >> 56), destination); 1592HexConverter.ToCharsBuffer((byte)(value >> 48), destination, 2); 1593HexConverter.ToCharsBuffer((byte)(value >> 40), destination, 4); 1594HexConverter.ToCharsBuffer((byte)(value >> 32), destination, 6); 1595HexConverter.ToCharsBuffer((byte)(value >> 24), destination, 8); 1596HexConverter.ToCharsBuffer((byte)(value >> 16), destination, 10); 1597HexConverter.ToCharsBuffer((byte)(value >> 8), destination, 12); 1598HexConverter.ToCharsBuffer((byte)value, destination, 14);
src\libraries\System.Private.CoreLib\src\System\Reflection\AssemblyName.cs (1)
387HexConverter.ToCharsBuffer(ch, vsb.AppendSpan(2), 0, HexConverter.Casing.Upper);