Eto.Designer.BuilderInfo.IsCodeBehind C# (CSharp) Method

IsCodeBehind() public static method

public static IsCodeBehind ( string fileName ) : bool
fileName string
return bool
		public static bool IsCodeBehind(string fileName)
		{
			return builders.Any(r => Regex.IsMatch(fileName, r.DesignExtension, RegexOptions.IgnoreCase));
		}
	}