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);
		}