Opens a text file for reading.
Namespace: LandisAssembly: Landis.Core (in Landis.Core.dll) Version: 6.1.5452.26346
Syntaxpublic static FileLineReader OpenTextFile(
string path
)
Public Shared Function OpenTextFile (
path As String
) As FileLineReader
public:
static FileLineReader^ OpenTextFile(
String^ path
)
static member OpenTextFile :
path : string -> FileLineReader
Parameters
- path
- Type: SystemString
[Missing <param name="path"/> documentation for "M:Landis.Data.OpenTextFile(System.String)"]
Return Value
Type:
FileLineReader[Missing <returns> documentation for "M:Landis.Data.OpenTextFile(System.String)"]
Remarks
The file is configured so that blank lines and comment lines are
skipped, and end-of-line comments are trimmed. The marker for
comment lines is ">" while the marker for end-of-line comments is
"<<".
See Also