Reads a Text File Line by Line. Return an array of strings,
using the default encoding.
Namespace: LLCryptoLib.UtilsAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public string[] ReadFileLines(
string absolutePath
) |
Visual Basic |
---|
Public Function ReadFileLines ( _
absolutePath As String _
) As String() |
Visual C++ |
---|
public:
array<String^>^ ReadFileLines(
String^ absolutePath
) |
Parameters
- absolutePath
- Type: System..::..String
Absolute Path of file to read from
Return Value
Text Contents of the file (one string per line)
See Also