Create a buffered file with the given mode.


Namespace: nom.tam.util
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal filename As String,  _ 
   ByVal access As FileAccess,  _ 
   ByVal share As FileShare _ 
)
C#
public BufferedFile(
   string filename,
   FileAccess access,
   FileShare share
)
C++
public:
 BufferedFile(
   String filename,
   FileAccess access,
   FileShare share
) sealed 
J#
public BufferedFile(
   string filename,
   FileAccess access,
   FileShare share
)
JScript
public function BufferedFile(
   filename : String,
   access : FileAccess,
   share : FileShare
)

Parameters

filename
The file to be accessed.
access
Read/write
share

See Also