IFloatingPoint<TSelf>.WriteExponentBigEndian 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
| Name | Description |
|---|---|
| WriteExponentBigEndian(Byte[]) |
현재 지수를 big-endian 형식으로 지정된 배열에 씁니다. |
| WriteExponentBigEndian(Span<Byte>) |
현재 지수를 big-endian 형식으로 지정된 범위에 씁니다. |
| WriteExponentBigEndian(Byte[], Int32) |
현재 지수를 big-endian 형식으로 지정된 배열에 씁니다. |
WriteExponentBigEndian(Byte[])
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
현재 지수를 big-endian 형식으로 지정된 배열에 씁니다.
public:
virtual int WriteExponentBigEndian(cli::array <System::Byte> ^ destination);
public virtual int WriteExponentBigEndian(byte[] destination);
abstract member WriteExponentBigEndian : byte[] -> int
override this.WriteExponentBigEndian : byte[] -> int
Public Overridable Function WriteExponentBigEndian (destination As Byte()) As Integer
매개 변수
- destination
- Byte[]
현재 지수를 작성할 배열입니다.
반환
destination에 쓰인 바이트 수입니다.
적용 대상
WriteExponentBigEndian(Span<Byte>)
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
현재 지수를 big-endian 형식으로 지정된 범위에 씁니다.
public:
virtual int WriteExponentBigEndian(Span<System::Byte> destination);
public virtual int WriteExponentBigEndian(Span<byte> destination);
abstract member WriteExponentBigEndian : Span<byte> -> int
override this.WriteExponentBigEndian : Span<byte> -> int
Public Overridable Function WriteExponentBigEndian (destination As Span(Of Byte)) As Integer
매개 변수
반환
destination에 쓰인 바이트 수입니다.
적용 대상
WriteExponentBigEndian(Byte[], Int32)
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
현재 지수를 big-endian 형식으로 지정된 배열에 씁니다.
public:
virtual int WriteExponentBigEndian(cli::array <System::Byte> ^ destination, int startIndex);
public virtual int WriteExponentBigEndian(byte[] destination, int startIndex);
abstract member WriteExponentBigEndian : byte[] * int -> int
override this.WriteExponentBigEndian : byte[] * int -> int
Public Overridable Function WriteExponentBigEndian (destination As Byte(), startIndex As Integer) As Integer
매개 변수
- destination
- Byte[]
현재 지수를 작성할 배열입니다.
- startIndex
- Int32
지수를 작성할 시작 인덱스입니다.
반환
에서 startIndex시작하는 에 기록된 destination 바이트 수입니다.