예제 #1
0
 /// <summary>
 /// Compare two <see cref="PureWindowsPath"/> for equality.
 /// Case insensitive.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public bool Equals(WindowsPath other)
 {
     if (other is null)
     {
         return(false);
     }
     return(PurePath.Equals(other.PurePath));
 }
예제 #2
0
 /// <summary>
 /// Compare two <see cref="PureWindowsPath"/> for equality.
 /// Case insensitive.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public bool Equals(WindowsPath other)
 {
     return(PurePath.Equals(other.PurePath));
 }