Exemplo n.º 1
0
 private bool DontRename(TypeMapping tm, MethodDef method) =>
 method.IsRuntimeSpecialName || _ns.IsPreserved(tm, MetaType.Method);
 public IEnumerable <InjectableMethod> Rate(InjectableFeature feature) => from it in InjectableTypes
 from m in it.TypeMapping.Source.Methods
     where !_ns.IsPreserved(it.TypeMapping, m)
 let r = feature.Rate(it, m)
             where r != null
         select r;