System.Attribute.Attribute.Match C# (CSharp) Method

Match() public method

public Match ( object obj ) : bool
obj object
return bool
		public virtual bool Match (object obj)
		{
			// default action is the same as Equals.
			// Derived classes should override as appropriate
			return this.Equals (obj);
		}