Microsoft.ResourceManagement.ObjectModel.RmAttributeName.Equals C# (CSharp) Method

Equals() public method

Determines whether the specified T:System.Object is equal to the current T:System.Object.
/// The parameter is null. ///
public Equals ( object obj ) : bool
obj object The to compare with the current .
return bool
        public override bool Equals(object obj)
        {
            RmAttributeName other = obj as RmAttributeName;
            if (other as Object == null) {
                return false;
            } else {
                return this.key.Equals(other.key);
            }
        }