System.Attribute.Attribute.Match C# (CSharp) Метод

Match() публичный Метод

public Match ( object obj ) : bool
obj object
Результат bool
		public virtual bool Match (object obj)
		{
			// default action is the same as Equals.
			// Derived classes should override as appropriate
			return this.Equals (obj);
		}