System.Security.Policy.HashMembershipCondition.HashMembershipCondition.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( object o ) : bool
o object
리턴 bool
		public override bool Equals (object o)
		{
			HashMembershipCondition other = (o as HashMembershipCondition);
			if (other == null)
				return false;

			return ((other.HashAlgorithm == hash_algorithm) &&
				Compare (hash_value, other.hash_value));
		}