IBinaryInteger<TSelf>.ReadBigEndian 메서드

정의

오버로드

ReadBigEndian(Byte[], Boolean)

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

ReadBigEndian(ReadOnlySpan<Byte>, Boolean)

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

ReadBigEndian(Byte[], Int32, Boolean)

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

ReadBigEndian(Byte[], Boolean)

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

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

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

매개 변수

source
Byte[]

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

isUnsigned
Boolean

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

반환

TSelf

에서 읽은 값입니다 source.

예외

source 가 로 표시할 수 없음 TSelf

적용 대상

ReadBigEndian(ReadOnlySpan<Byte>, Boolean)

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

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

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

매개 변수

source
ReadOnlySpan<Byte>

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

isUnsigned
Boolean

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

반환

TSelf

에서 읽은 값입니다 source.

예외

source 가 로 표시할 수 없음 TSelf

적용 대상

ReadBigEndian(Byte[], Int32, Boolean)

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

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

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

매개 변수

source
Byte[]

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

startIndex
Int32

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

isUnsigned
Boolean

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

반환

TSelf

부터 source 읽은 값입니다 startIndex.

예외

source 가 로 표시할 수 없음 TSelf

적용 대상