public bool Equals(ProjectInformation other)
        {
            bool areEqual = false;

            if (other != null)
            {
                if (GetHashCode() == other.GetHashCode())
                {
                    if (ProjectGuid.Equals(other.ProjectGuid))
                    {
                        areEqual = true;
                    }
                }
            }

            return(areEqual);
        }
예제 #2
0
 protected bool Equals(Project other)
 {
     return(ProjectGuid.Equals(other.ProjectGuid));
 }