Example #1
0
        public override bool Equals(object obj)
        {
            var theOther = obj as TfsFolder;

            if (theOther == null)
            {
                return(false);
            }

            return(ServerPath.Equals(theOther.ServerPath));
        }
Example #2
0
 public override int GetHashCode()
 {
     return(ServerPath.GetHashCode());
 }