Hello! How do I can import types with same Name but different count of parameters?
For ex: _actions = new List<TypeReference>(); _actions.Add(module.Import(typeof(System.Action))); _actions.Add(module.Import(typeof(System.Action<T>))); _actions.Add(module.Import(typeof(System.Action<T,T2>))); Action's are generics and I dont know T, T2, T3... at this time. How do I can import them? Thanks! -- -- mono-cecil
