IBinaryInteger<TSelf>.WriteLittleEndian 메서드

정의

오버로드

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
Span<Byte>

현재 값을 작성해야 하는 범위입니다.

반환

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 바이트 수입니다.

적용 대상