public bool SameFileAs(IgnoreItem o) { if (string.IsNullOrEmpty(this.FileAndPath) || string.IsNullOrEmpty(o?.FileAndPath)) { return(false); } return(this.FileAndPath == o.FileAndPath); }
public bool SameFileAs(IgnoreItem o) { if (string.IsNullOrEmpty(this.FileAndPath) || string.IsNullOrEmpty(o.FileAndPath)) return false; return this.FileAndPath == o.FileAndPath; }