Ejemplo n.º 1
0
        public List <MethodDef> GetInlinedMethods()
        {
            var list = new List <MethodDef>();

            foreach (var type in methodsTypes.GetKeys())
            {
                list.AddRange(type.Methods);
            }

            return(list);
        }