Format an int into an array.
Namespace: nom.tam.util
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| Public Function format( _ ByVal val As Integer, _ ByVal array As Byte() _ ) As Integer |
| C# |
|---|
| public int format( int val, byte[] array ) |
| C++ |
|---|
| public: int format( int val, array<char>^ array ) sealed |
| J# |
|---|
| public int format( int val, byte[] array ) |
| JScript |
|---|
| public
function format( val : int, array : Byte[] ) : int |
Parameters
- val
- The int to be formatted.
- array
- The array in which to place the result.
Return Value
The number of characters used.