|   | 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.
            
 GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
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);
Parameters
- 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
See Also