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);
    }