12 implementations of TryReadLittleEndian
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
330static bool IBinaryInteger<byte>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out byte value)
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1228static bool IBinaryInteger<char>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out char value)
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
375static bool IBinaryInteger<short>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out short value)
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
402static bool IBinaryInteger<int>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out int value)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
399static bool IBinaryInteger<long>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out long value)
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
404static bool IBinaryInteger<nint>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out nint value)
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
356static bool IBinaryInteger<sbyte>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out sbyte value)
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
344static bool IBinaryInteger<ushort>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out ushort value)
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
372static bool IBinaryInteger<uint>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out uint value)
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
371static bool IBinaryInteger<ulong>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out ulong value)
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
375static bool IBinaryInteger<nuint>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out nuint value)
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3575static bool IBinaryInteger<BigInteger>.TryReadLittleEndian(ReadOnlySpan<byte> source, bool isUnsigned, out BigInteger value)
14 references to TryReadLittleEndian
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
329/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1227/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
374/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
401/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
398/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
403/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Numerics\IBinaryInteger.cs (2)
113if (!TSelf.TryReadLittleEndian(source.AsSpan(startIndex), isUnsigned, out TSelf value)) 127if (!TSelf.TryReadLittleEndian(source, isUnsigned, out TSelf value))
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
355/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
343/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
371/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
370/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
374/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3574/// <inheritdoc cref="IBinaryInteger{TSelf}.TryReadLittleEndian(ReadOnlySpan{byte}, bool, out TSelf)" />