IBinaryInteger<TSelf>.ReadLittleEndian 메서드

정의

오버로드

ReadLittleEndian(Byte[], Boolean)

지정된 배열에서 두 개의 보수 번호를 little-endian 형식으로 읽고 현재 형식의 instance 변환합니다.

ReadLittleEndian(ReadOnlySpan<Byte>, Boolean)

지정된 범위에서 두 개의 보수 번호를 little-endian 형식으로 읽고 현재 형식의 instance 변환합니다.

ReadLittleEndian(Byte[], Int32, Boolean)

지정된 배열에서 두 개의 보수 번호를 little-endian 형식으로 읽고 현재 형식의 instance 변환합니다.

ReadLittleEndian(Byte[], Boolean)

Source:
IBinaryInteger.cs
Source:
IBinaryInteger.cs
Source:
IBinaryInteger.cs

지정된 배열에서 두 개의 보수 번호를 little-endian 형식으로 읽고 현재 형식의 instance 변환합니다.

public:
 static override TSelf ReadLittleEndian(cli::array <System::Byte> ^ source, bool isUnsigned);
public static virtual TSelf ReadLittleEndian (byte[] source, bool isUnsigned);
static member ReadLittleEndian : byte[] * bool -> 'Self
Public Shared Overrides Function ReadLittleEndian (source As Byte(), isUnsigned As Boolean) As TSelf

매개 변수

source
Byte[]

두 개의 보수 번호를 읽어야 하는 배열입니다.

isUnsigned
Boolean

true 가 부호 없는 2의 보수 번호를 나타내면 source 이고, false 그렇지 않으면 부호 있는 2의 보수 번호를 나타내려면 입니다.

반환

TSelf

에서 source읽은 값입니다.

예외

source 가 로 표시할 수 없음 TSelf

적용 대상

ReadLittleEndian(ReadOnlySpan<Byte>, Boolean)

Source:
IBinaryInteger.cs
Source:
IBinaryInteger.cs
Source:
IBinaryInteger.cs

지정된 범위에서 두 개의 보수 번호를 little-endian 형식으로 읽고 현재 형식의 instance 변환합니다.

public:
 static override TSelf ReadLittleEndian(ReadOnlySpan<System::Byte> source, bool isUnsigned);
public static virtual TSelf ReadLittleEndian (ReadOnlySpan<byte> source, bool isUnsigned);
static member ReadLittleEndian : ReadOnlySpan<byte> * bool -> 'Self
Public Shared Overrides Function ReadLittleEndian (source As ReadOnlySpan(Of Byte), isUnsigned As Boolean) As TSelf

매개 변수

source
ReadOnlySpan<Byte>

두 개의 보수 번호를 읽어야 하는 배열입니다.

isUnsigned
Boolean

true 가 부호 없는 2의 보수 번호를 나타내면 source 이고, false 그렇지 않으면 부호 있는 2의 보수 번호를 나타내려면 입니다.

반환

TSelf

에서 source읽은 값입니다.

예외

source 가 로 표시할 수 없음 TSelf

적용 대상

ReadLittleEndian(Byte[], Int32, Boolean)

Source:
IBinaryInteger.cs
Source:
IBinaryInteger.cs
Source:
IBinaryInteger.cs

지정된 배열에서 두 개의 보수 번호를 little-endian 형식으로 읽고 현재 형식의 instance 변환합니다.

public:
 static override TSelf ReadLittleEndian(cli::array <System::Byte> ^ source, int startIndex, bool isUnsigned);
public static virtual TSelf ReadLittleEndian (byte[] source, int startIndex, bool isUnsigned);
static member ReadLittleEndian : byte[] * int * bool -> 'Self
Public Shared Overrides Function ReadLittleEndian (source As Byte(), startIndex As Integer, isUnsigned As Boolean) As TSelf

매개 변수

source
Byte[]

두 개의 보수 번호를 읽어야 하는 배열입니다.

startIndex
Int32

값을 읽어야 하는 시작 인덱스입니다.

isUnsigned
Boolean

true 가 부호 없는 2의 보수 번호를 나타내면 source 이고, false 그렇지 않으면 부호 있는 2의 보수 번호를 나타내려면 입니다.

반환

TSelf

부터 source 읽은 값입니다 startIndex.

예외

source 가 로 표시할 수 없음 TSelf

적용 대상