Hi,
is it possible to call with reflection a method with "explict type argument" <S>
definition
e.g. oObject.Cast<S>()
?
where is:
IList <P> oObject = new List <P>();
I tried with
oObject.getType().InvokeMember( "Cast", BindingFlags.InvokeMethod, null, oObject, null)
but it does not work, does anyone know why?