Format a long into an existing array.
Namespace: nom.tam.util
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function format( _ ByVal val As Long, _ ByVal buf As Byte(), _ ByVal off As Integer, _ ByVal len As Integer _ ) As Integer |
C# |
---|
public int format( long val, byte[] buf, int off, int len ) |
C++ |
---|
public: int format( __int64 val, array<char>^ buf, int off, int len ) sealed |
J# |
---|
public int format( long val, byte[] buf, int off, int len ) |
JScript |
---|
public
function format( val : long, buf : Byte[], off : int, len : int ) : int |
Parameters
- val
- Long to be formatted
- buf
- Buffer in which result is to be stored
- off
- Offset within buffer
- len
- Maximum length of integer
Return Value
offset of next unused character in input buffer.