G
Guest
I know its not possible to override explicit interface declarations in a
subclass.
But is it doable in MSIL?
what I need to do is to create runtime proxies for different IList
implementations.
which currently work just fine for implicit virtual declarations.
the problems with the explicit declarations is that they are (in the ilcode)
"private"
which makes my typebuilder throw up on me saying "method access exception"
which I do understand why.
but I just wanted to make sure if there is any way to accomplish this in msil?
my current idea is to call teh private member through methodinfo.invoke ,
but that is slow and id rather find another way to do it..
//Roger
subclass.
But is it doable in MSIL?
what I need to do is to create runtime proxies for different IList
implementations.
which currently work just fine for implicit virtual declarations.
the problems with the explicit declarations is that they are (in the ilcode)
"private"
which makes my typebuilder throw up on me saying "method access exception"
which I do understand why.
but I just wanted to make sure if there is any way to accomplish this in msil?
my current idea is to call teh private member through methodinfo.invoke ,
but that is slow and id rather find another way to do it..
//Roger