NuGet.ClosureEvaluator.IsCompilerGenerated C# (CSharp) Method

IsCompilerGenerated() private static method

private static IsCompilerGenerated ( Type type ) : bool
type System.Type
return bool
        private static bool IsCompilerGenerated(Type type)
        {
            return type.GetCustomAttributes(inherit: true)
                       .OfType<CompilerGeneratedAttribute>()
                       .Any();
        }
    }