Castle.MonoRail.Views.Brail.BrailPreProcessor.ShouldPreProcess C# (CSharp) Method

ShouldPreProcess() private method

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