|
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.251-beta+c370f3da3791592278238855631f53a5ff418c68
Syntaxpublic List<string> ReadLines(
bool removeEmptyLines = false
)
Public Function ReadLines (
Optional removeEmptyLines As Boolean = false
) As List(Of String)
public:
List<String^>^ ReadLines(
bool removeEmptyLines = false
)
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