Hendry Luk
unread,May 2, 2011, 1:48:59 AM5/2/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mono-...@googlegroups.com
I'm sure this question has been asked so many times before, but I can't seem to find a satisfying answer for it .
How do I get Cecil to emit a call to static method 'Something' on the following generic class?
public static class MyClass<T, Y>
{
public static void Something(int a, string b, object c)
{
}
}
And I intend to call MyClass<int, string>.Something(int, string, object);
What's the right way to achieve that?
Thanks before
Hendry