IBinaryInteger<TSelf>.ReadLittleEndian 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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의 보수 번호를 나타내려면 입니다.
반환
에서 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의 보수 번호를 나타내려면 입니다.
반환
에서 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의 보수 번호를 나타내려면 입니다.
반환
부터 source
읽은 값입니다 startIndex
.
예외
source
가 로 표시할 수 없음 TSelf
적용 대상
.NET