GetHashCode() public method

public GetHashCode ( ) : int
return int
		public void GetHashCodeTest ()
		{
			ComplexBindingPropertiesAttribute a;

			a = new ComplexBindingPropertiesAttribute ("source", "member");
			Assert.IsFalse (0 == a.GetHashCode (), "1");

			a = new ComplexBindingPropertiesAttribute ("source");
			Assert.IsFalse (0 == a.GetHashCode (), "2");
		}