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

-- 
--
mono-cecil

Reply via email to