|
LogFileReadLines Method
|
Reads text from the
LogFile and returns a list of lines created by separating the text by the "newline"
characters if and where present.
Namespace: GSF.IOAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax Public Function ReadLines (
Optional removeEmptyLines As Boolean = false
) As List(Of String)
member ReadLines :
?removeEmptyLines : bool
(* Defaults:
let _removeEmptyLines = defaultArg removeEmptyLines false
*)
-> List<string>
function ReadLines(removeEmptyLines);
View SourceParameters
- removeEmptyLines Boolean (Optional)
- true, if empty lines are to be removed from the list; otherwise, false>.
Return Value
ListStringA list of lines from the text read from the
LogFile.
See Also