Why cannot I create a dynamic delegate which has more than one argument using .NET EMIT
Advertisements There are some definations: public class Message { public SayType Say(string name) { Console.Write("Hello," + name ); return SayType.Name; } public SayType Say(string name,string haha) { Console.Write("Hello," + name ); return SayType.Name; } } public enum SayType { Name } And I want to create two dynamic of the two function in class Message.… Read More Why cannot I create a dynamic delegate which has more than one argument using .NET EMIT