FileReadLines Method (KernelTransaction, String) |
[AlphaFS] Reads the lines of a file.
Namespace: Alphaleonis.Win32.FilesystemAssembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public static IEnumerable<string> ReadLines(
KernelTransaction transaction,
string path
)
Public Shared Function ReadLines (
transaction As KernelTransaction,
path As String
) As IEnumerable(Of String)
public:
static IEnumerable<String^>^ ReadLines(
KernelTransaction^ transaction,
String^ path
)
static member ReadLines :
transaction : KernelTransaction *
path : string -> IEnumerable<string>
Parameters
- transaction
- Type: Alphaleonis.Win32.FilesystemKernelTransaction
The transaction. - path
- Type: SystemString
The file to read.
Return Value
Type:
IEnumerableStringAll the lines of the file, or the lines that are the result of a query.
See Also