If interfaces are supposed not to work in this case, is it possible to get the offset of the interface in its object?
interface I { }class C: I { }I object = new C;assert(typeid(object) == typeid(C)); // failsIs this normal or is it a bug?Note, that the same works fine in case of a base class, rather then an interface.--
Bye,
Gor Gyolchanyan.