Open this file in binary mode.
Namespace: BasicCard.BasicCards.FileSysAssembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)
Syntax
C# |
---|
public void Open(
bool forRead,
bool forWrite,
bool shared,
bool append
) |
Visual Basic |
---|
Public Sub Open (
forRead As Boolean,
forWrite As Boolean,
shared As Boolean,
append As Boolean
) |
Visual C++ |
---|
public:
void Open(
bool forRead,
bool forWrite,
bool shared,
bool append
) |
F# |
---|
member Open :
forRead : bool *
forWrite : bool *
shared : bool *
append : bool -> unit
|
Parameters
- forRead
- Type: System..::..Boolean
if true read access is possible
- forWrite
- Type: System..::..Boolean
if true write access is possible
- shared
- Type: System..::..Boolean
if true access is shared, otherwise none shared
- append
- Type: System..::..Boolean
if true write actions are appended to this file
See Also