IBinaryInteger<TSelf>.WriteBigEndian 메서드

정의

오버로드

WriteBigEndian(Byte[])

현재 값을 big-endian 형식으로 지정된 배열에 씁니다.

WriteBigEndian(Span<Byte>)

현재 값을 big-endian 형식으로 지정된 범위에 씁니다.

WriteBigEndian(Byte[], Int32)

현재 값을 big-endian 형식으로 지정된 배열에 씁니다.

WriteBigEndian(Byte[])

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

현재 값을 big-endian 형식으로 지정된 배열에 씁니다.

public:
 virtual int WriteBigEndian(cli::array <System::Byte> ^ destination);
public virtual int WriteBigEndian (byte[] destination);
abstract member WriteBigEndian : byte[] -> int
override this.WriteBigEndian : byte[] -> int
Public Overridable Function WriteBigEndian (destination As Byte()) As Integer

매개 변수

destination
Byte[]

현재 값을 작성할 배열입니다.

반환

destination에 쓰인 바이트 수입니다.

적용 대상

WriteBigEndian(Span<Byte>)

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

현재 값을 big-endian 형식으로 지정된 범위에 씁니다.

public:
 virtual int WriteBigEndian(Span<System::Byte> destination);
public virtual int WriteBigEndian (Span<byte> destination);
abstract member WriteBigEndian : Span<byte> -> int
override this.WriteBigEndian : Span<byte> -> int
Public Overridable Function WriteBigEndian (destination As Span(Of Byte)) As Integer

매개 변수

destination
Span<Byte>

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

반환

destination에 쓰인 바이트 수입니다.

적용 대상

WriteBigEndian(Byte[], Int32)

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

현재 값을 big-endian 형식으로 지정된 배열에 씁니다.

public:
 virtual int WriteBigEndian(cli::array <System::Byte> ^ destination, int startIndex);
public virtual int WriteBigEndian (byte[] destination, int startIndex);
abstract member WriteBigEndian : byte[] * int -> int
override this.WriteBigEndian : byte[] * int -> int
Public Overridable Function WriteBigEndian (destination As Byte(), startIndex As Integer) As Integer

매개 변수

destination
Byte[]

현재 값을 작성할 배열입니다.

startIndex
Int32

값을 작성할 시작 인덱스입니다.

반환

에서 startIndex시작하는 에 기록된 destination 바이트 수입니다.

적용 대상