FANN C# FannFile class

Summary
FANN C# FannFile class
Functions
FannFileEncapsulates a C FILE pointer
DisposeCloses the file

Functions

FannFile

public FannFile(string filename,
string mode)

Encapsulates a C FILE pointer

Parameters

filenameThe filepath to open
modeThe mode to open file in.  “r” for read, “w” write, “a” for append, “r+” for read/update, “w+” for write update, “a+” for append/update...  See also: fopen

Dispose

public void Dispose()

Closes the file

See also

fclose

public FannFile(string filename,
string mode)
Encapsulates a C FILE pointer
public void Dispose()
Closes the file
Close