public RowData Parse(string eventSource) { string[] parseResult = ParseEventLogString(eventSource); RowData dataRow = null; if (parseResult != null) { dataRow = new RowData(); dataRow.FillByStringParsedData(_reader, parseResult); } return(dataRow); }