示例#1
0
        void ApplyPreserveMethods(TypeDefinition type)
        {
            var list = Annotations.GetPreservedMethods(type);

            if (list == null)
            {
                return;
            }

            foreach (MethodDefinition method in list)
            {
                MarkMethod(method);
            }
        }