IBinaryInteger<TSelf>.WriteLittleEndian 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
WriteLittleEndian(Byte[]) |
현재 값을 little-endian 형식으로 지정된 배열에 씁니다. |
WriteLittleEndian(Span<Byte>) |
현재 값을 little-endian 형식으로 지정된 범위에 씁니다. |
WriteLittleEndian(Byte[], Int32) |
현재 값(little-endian 형식)을 지정된 인덱스에서 시작하는 지정된 배열에 씁니다. |
WriteLittleEndian(Byte[])
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
현재 값을 little-endian 형식으로 지정된 배열에 씁니다.
public:
virtual int WriteLittleEndian(cli::array <System::Byte> ^ destination);
public virtual int WriteLittleEndian (byte[] destination);
abstract member WriteLittleEndian : byte[] -> int
override this.WriteLittleEndian : byte[] -> int
Public Overridable Function WriteLittleEndian (destination As Byte()) As Integer
매개 변수
- destination
- Byte[]
현재 값을 작성할 배열입니다.
반환
destination
에 쓰인 바이트 수입니다.
적용 대상
WriteLittleEndian(Span<Byte>)
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
현재 값을 little-endian 형식으로 지정된 범위에 씁니다.
public:
virtual int WriteLittleEndian(Span<System::Byte> destination);
public virtual int WriteLittleEndian (Span<byte> destination);
abstract member WriteLittleEndian : Span<byte> -> int
override this.WriteLittleEndian : Span<byte> -> int
Public Overridable Function WriteLittleEndian (destination As Span(Of Byte)) As Integer
매개 변수
반환
destination
에 쓰인 바이트 수입니다.
적용 대상
WriteLittleEndian(Byte[], Int32)
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
- Source:
- IBinaryInteger.cs
현재 값(little-endian 형식)을 지정된 인덱스에서 시작하는 지정된 배열에 씁니다.
public:
virtual int WriteLittleEndian(cli::array <System::Byte> ^ destination, int startIndex);
public virtual int WriteLittleEndian (byte[] destination, int startIndex);
abstract member WriteLittleEndian : byte[] * int -> int
override this.WriteLittleEndian : byte[] * int -> int
Public Overridable Function WriteLittleEndian (destination As Byte(), startIndex As Integer) As Integer
매개 변수
- destination
- Byte[]
현재 값을 작성할 배열입니다.
- startIndex
- Int32
값을 작성해야 하는 시작 인덱스입니다.
반환
부터 startIndex
에 기록된 destination
바이트 수입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET