public override bool Equals(ChoIniNode other) { if (other is ChoIniNode) { return(GetHashCode() == ((ChoIniNode)other).GetHashCode()); } else { return(false); } }
public override bool Equals(ChoIniNode other) { if (other is ChoIniNameValueNode) { return(_name == ((ChoIniNameValueNode)other)._name); } else { return(false); } }
public override bool Equals(ChoIniNode other) { if (other is ChoIniCommentNode) { return(_commentLine == ((ChoIniCommentNode)other)._commentLine); } else { return(false); } }
public override bool Equals(ChoIniNode other) { if (other is ChoIniIncludeFileNode) { return(_filePath == ((ChoIniIncludeFileNode)other)._filePath); } else { return(false); } }
public bool Remove(ChoIniNode node) { return(_iniDocument.Remove(node)); }