SequenceReaderExtensions.TryReadLittleEndian 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
TryReadLittleEndian(SequenceReader<Byte>, Int16) |
Int16를 little endian으로 읽으려고 합니다. |
TryReadLittleEndian(SequenceReader<Byte>, Int32) |
Int32를 little endian으로 읽으려고 합니다. |
TryReadLittleEndian(SequenceReader<Byte>, Int64) |
Int64를 little endian으로 읽으려고 합니다. |
TryReadLittleEndian(SequenceReader<Byte>, Int16)
Int16를 little endian으로 읽으려고 합니다.
public:
[System::Runtime::CompilerServices::Extension]
static bool TryReadLittleEndian(System::Buffers::SequenceReader<System::Byte> % reader, [Runtime::InteropServices::Out] short % value);
public static bool TryReadLittleEndian (this ref System.Buffers.SequenceReader<byte> reader, out short value);
static member TryReadLittleEndian : SequenceReader * int16 -> bool
<Extension()>
Public Function TryReadLittleEndian (ByRef reader As SequenceReader(Of Byte), ByRef value As Short) As Boolean
매개 변수
- reader
- SequenceReader<Byte>
값을 읽어올 바이트 시퀀스 판독기 인스턴스입니다.
- value
- Int16
메서드가 반환할 때 바이트 시퀀스 판독기에서 little endian으로 읽은 값입니다.
반환
읽기 작업이 성공하면 true
이고, Int16에 대한 데이터가 충분하지 않으면 false
입니다.
적용 대상
TryReadLittleEndian(SequenceReader<Byte>, Int32)
Int32를 little endian으로 읽으려고 합니다.
public:
[System::Runtime::CompilerServices::Extension]
static bool TryReadLittleEndian(System::Buffers::SequenceReader<System::Byte> % reader, [Runtime::InteropServices::Out] int % value);
public static bool TryReadLittleEndian (this ref System.Buffers.SequenceReader<byte> reader, out int value);
static member TryReadLittleEndian : SequenceReader * int -> bool
<Extension()>
Public Function TryReadLittleEndian (ByRef reader As SequenceReader(Of Byte), ByRef value As Integer) As Boolean
매개 변수
- reader
- SequenceReader<Byte>
값을 읽어올 바이트 시퀀스 판독기 인스턴스입니다.
- value
- Int32
메서드가 반환할 때 바이트 시퀀스 판독기에서 little endian으로 읽은 값입니다.
반환
읽기 작업이 성공하면 true
이고, Int32에 대한 데이터가 충분하지 않으면 false
입니다.
적용 대상
TryReadLittleEndian(SequenceReader<Byte>, Int64)
Int64를 little endian으로 읽으려고 합니다.
public:
[System::Runtime::CompilerServices::Extension]
static bool TryReadLittleEndian(System::Buffers::SequenceReader<System::Byte> % reader, [Runtime::InteropServices::Out] long % value);
public static bool TryReadLittleEndian (this ref System.Buffers.SequenceReader<byte> reader, out long value);
static member TryReadLittleEndian : SequenceReader * int64 -> bool
<Extension()>
Public Function TryReadLittleEndian (ByRef reader As SequenceReader(Of Byte), ByRef value As Long) As Boolean
매개 변수
- reader
- SequenceReader<Byte>
값을 읽어올 바이트 시퀀스 판독기 인스턴스입니다.
- value
- Int64
메서드가 반환할 때 바이트 시퀀스 판독기에서 little endian으로 읽은 값입니다.
반환
읽기 작업이 성공하면 true
이고, Int64에 대한 데이터가 충분하지 않으면 false
입니다.
적용 대상
.NET