Write to BasicCard file.

Namespace: BasicCard.BasicCards.FileSys
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public override void Write(
	byte[] buffer,
	int offset,
	int count
)
Visual Basic
Public Overrides Sub Write ( 
	buffer As Byte(),
	offset As Integer,
	count As Integer
)
Visual C++
public:
virtual void Write(
	array<unsigned char>^ buffer, 
	int offset, 
	int count
) override
F#
abstract Write : 
        buffer : byte[] * 
        offset : int * 
        count : int -> unit 
override Write : 
        buffer : byte[] * 
        offset : int * 
        count : int -> unit 

Parameters

buffer
Type: array<System..::..Byte>[]()[][]
An array of bytes. This method copies count bytes from buffer to the current stream.
offset
Type: System..::..Int32
The zero-based byte offset in buffer at which to begin copying bytes to the current stream.
count
Type: System..::..Int32
The number of bytes to be written to the current stream.

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionIf not opened for write.

See Also