BExplorer.Shell.Interop.IconReference.Equals C# (CSharp) Method

Equals() public method

Determines if this object is equal to another.
public Equals ( object obj ) : bool
obj object The object to compare
return bool
		public override bool Equals(object obj) {
			if (obj == null || !(obj is IconReference)) { return false; }
			return (this == (IconReference)obj);
		}