| FileGetReader Method |
Opens and gets a StreamReader for the file at the supplied path.
Namespace:
Galactic.FileSystem
Assembly:
Galactic.FileSystem (in Galactic.FileSystem.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static StreamReader GetReader(
string path
)
Public Shared Function GetReader (
path As String
) As StreamReader
public:
static StreamReader^ GetReader(
String^ path
)
static member GetReader :
path : string -> StreamReader
Parameters
- path
- Type: SystemString
The path to the file to get a StreamReader for.
Return Value
Type:
StreamReaderA StreamReader for the file.
See Also