|
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.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
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