예제 #1
0
파일: Props.cs 프로젝트: dbremner/smokey
        public override bool Equals(object rhsObj)
        {
            if (rhsObj == null)
            {
                return(false);
            }

            BadVisibleState rhs = rhsObj as BadVisibleState;

            return(this == rhs);
        }
예제 #2
0
파일: Props.cs 프로젝트: dbremner/smokey
 public bool Equals(BadVisibleState rhs)
 {
     return(this == rhs);
 }
예제 #3
0
파일: Props.cs 프로젝트: dbremner/smokey
		public bool Equals(BadVisibleState rhs)	
		{
			return this == rhs;
		}