Catel.Fody.CodeGenTypeCleaner.Process C# (CSharp) 메소드

Process() 개인적인 메소드

private Process ( List catelTypes ) : void
catelTypes List
리턴 void
        private void Process(List<CatelType> catelTypes)
        {
            foreach (var catelType in catelTypes.ToList())
            {
                var customAttributes = catelType.TypeDefinition.CustomAttributes;
                if (customAttributes.ContainsAttribute("System.Runtime.CompilerServices.CompilerGeneratedAttribute"))
                {
                    catelTypes.Remove(catelType);
                    continue;
                }
            }
        }