MonoTouch.Dialog.StringElement.Matches C# (CSharp) 메소드

Matches() 공개 메소드

public Matches ( string text ) : bool
text string
리턴 bool
		public override bool Matches (string text)
		{
			return (Value != null ? Value.IndexOf (text, StringComparison.CurrentCultureIgnoreCase) != -1: false) || base.Matches (text);
		}
	}