Hi,
I have two classes and I would like to call a generic method of a
generic base class in the context of a derived class:

class BaseClass<T>
{
    public T GetKey()
}

class DerivedClass: BassClass<Int>
{
}

Now I want to generate ilProcessor.Create(OpCodes.Call,
CreateMethodRef(typeof(DerivedClass),"GetKey"));

How do I have to implement CreateMethodRef. I can find the GetKey
function at the base class but this is the open definition.

Thanks

Jan

-- 
--
mono-cecil

Subscription settings: http://groups.google.com/group/mono-cecil/subscribe?hl=en

Reply via email to