FileGenerator.Drawables.DrawablesGenerator.IsSupportedByCore C# (CSharp) 메소드

IsSupportedByCore() 개인적인 메소드

private IsSupportedByCore ( string typeName ) : bool
typeName string
리턴 bool
    private bool IsSupportedByCore(string typeName)
    {
      string[] invalidTypes = new string[] { "Color", "Matrix", "Rectangle" };
      return !invalidTypes.Contains(typeName);
    }