System.Security.Cryptography.X509Certificates.X509Certificate.X509Certificate.Equals C# (CSharp) Method

Equals() private method

private Equals ( object obj ) : bool
obj object
return bool
		public override bool Equals (object obj) 
		{
			X509Certificate x = (obj as X509Certificate);
			if (x != null)
				return this.Equals (x);
			return false;
		}