12 implementations of TryReadLittleEndian
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
330
static bool IBinaryInteger<byte>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out byte value)
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1228
static bool IBinaryInteger<char>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out char value)
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
375
static bool IBinaryInteger<short>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out short value)
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
402
static bool IBinaryInteger<int>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out int value)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
399
static bool IBinaryInteger<long>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out long value)
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
404
static bool IBinaryInteger<nint>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out nint value)
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
356
static bool IBinaryInteger<sbyte>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out sbyte value)
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
344
static bool IBinaryInteger<ushort>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out ushort value)
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
372
static bool IBinaryInteger<uint>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out uint value)
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
371
static bool IBinaryInteger<ulong>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out ulong value)
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
375
static bool IBinaryInteger<nuint>.
TryReadLittleEndian
(ReadOnlySpan<byte> source, bool isUnsigned, out nuint value)
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3575
static 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)
113
if (!TSelf.
TryReadLittleEndian
(source.AsSpan(startIndex), isUnsigned, out TSelf value))
127
if (!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)" />