System.ComponentModel.DefaultBindingPropertyAttribute.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode() {
            return base.GetHashCode();
        }
    }

Usage Example

		public void GetHashCodeTest ()
		{
			DefaultBindingPropertyAttribute a;

			a = new DefaultBindingPropertyAttribute ("test");
			Assert.IsFalse (0 == a.GetHashCode (), "1");
		}