Write (put) to file at current position. This requires the file to be opened
with ModeBinary or ModeRandom.
Namespace: BasicCard.BasicCards.FileSysAssembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)
Syntax
C# |
---|
public void FilePut(
int fileNumber,
byte[] data
) |
Visual Basic |
---|
Public Sub FilePut (
fileNumber As Integer,
data As Byte()
) |
Visual C++ |
---|
public:
void FilePut(
int fileNumber,
array<unsigned char>^ data
) |
F# |
---|
member FilePut :
fileNumber : int *
data : byte[] -> unit
|
Parameters
- fileNumber
- Type: System..::..Int32
file number
- data
- Type: array<System..::..Byte>[]()[][]
bytes to write
See Also