Castle.MonoRail.Views.Brail.BrailPreProcessor.ShouldPreProcess C# (CSharp) 메소드

ShouldPreProcess() 개인적인 메소드

private ShouldPreProcess ( string code ) : bool
code string
리턴 bool
		private bool ShouldPreProcess(string code)
		{
			foreach (DictionaryEntry entry in Seperators)
			{
				if (code.Contains(entry.Key.ToString()))
					return true;
			}
			return false;
		}