private bool IsLineWithComment() { if (LineCHN.Replace(TestComment(), "").Replace(" ", "") != "") { return(true); } return(false); }
private bool IsSpaceLine() { if (LineCHN.Replace(" ", "") == "") { return(true); } return(false); }
private bool IsComment() { try { if (LineCHN.Replace(" ", "").Substring(0, 1) == "#") { return(true); } } catch { } return(false); }
public bool IsEditable() { if (IsSpaceLine()) { return(false); } if (LineCHN.Replace(" ", "") == "l_english:") { return(false); } if (IsComment()) { return(false); } return(true); }
private bool IsLineWithComment() { return(LineCHN.Replace(TestComment(), "").Replace(" ", "") != ""); }
private bool IsSpaceLine() { return(string.IsNullOrEmpty(LineCHN.Trim())); }
public void FixError() { LineCHN = VariableName + "\"" + LineCHN.Replace(VariableName, "") + "\""; }