예제 #1
0
 public bool SameFileAs(IgnoreItem o)
 {
     if (string.IsNullOrEmpty(this.FileAndPath) || string.IsNullOrEmpty(o?.FileAndPath))
     {
         return(false);
     }
     return(this.FileAndPath == o.FileAndPath);
 }
예제 #2
0
 public bool SameFileAs(IgnoreItem o)
 {
     if (string.IsNullOrEmpty(this.FileAndPath) || string.IsNullOrEmpty(o.FileAndPath))
         return false;
     return this.FileAndPath == o.FileAndPath;
 }