IFloatingPoint<TSelf>.WriteSignificandBigEndian Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WriteSignificandBigEndian(Byte[]) |
Writes the current significand, in big-endian format, to a given array. |
WriteSignificandBigEndian(Span<Byte>) |
Writes the current significand, in big-endian format, to a given span. |
WriteSignificandBigEndian(Byte[], Int32) |
Writes the current significand, in big-endian format, to a given array. |
WriteSignificandBigEndian(Byte[])
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
Writes the current significand, in big-endian format, to a given array.
public:
virtual int WriteSignificandBigEndian(cli::array <System::Byte> ^ destination);
public virtual int WriteSignificandBigEndian (byte[] destination);
abstract member WriteSignificandBigEndian : byte[] -> int
override this.WriteSignificandBigEndian : byte[] -> int
Public Overridable Function WriteSignificandBigEndian (destination As Byte()) As Integer
Parameters
- destination
- Byte[]
The array to which the current significand should be written.
Returns
The number of bytes written to destination
.
Applies to
WriteSignificandBigEndian(Span<Byte>)
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
Writes the current significand, in big-endian format, to a given span.
public:
virtual int WriteSignificandBigEndian(Span<System::Byte> destination);
public virtual int WriteSignificandBigEndian (Span<byte> destination);
abstract member WriteSignificandBigEndian : Span<byte> -> int
override this.WriteSignificandBigEndian : Span<byte> -> int
Public Overridable Function WriteSignificandBigEndian (destination As Span(Of Byte)) As Integer
Parameters
Returns
The number of bytes written to destination
.
Applies to
WriteSignificandBigEndian(Byte[], Int32)
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
- Source:
- IFloatingPoint.cs
Writes the current significand, in big-endian format, to a given array.
public:
virtual int WriteSignificandBigEndian(cli::array <System::Byte> ^ destination, int startIndex);
public virtual int WriteSignificandBigEndian (byte[] destination, int startIndex);
abstract member WriteSignificandBigEndian : byte[] * int -> int
override this.WriteSignificandBigEndian : byte[] * int -> int
Public Overridable Function WriteSignificandBigEndian (destination As Byte(), startIndex As Integer) As Integer
Parameters
- destination
- Byte[]
The array to which the current significand should be written.
- startIndex
- Int32
The starting index at which the significand should be written.
Returns
The number of bytes written to destination
starting at startIndex
.