Concern over inheritance with static interface methods
Consider the following interface:
I have two classes, LuaUser and LuaMember. When I implement the classes like so, I get the following error:
If I add the suggested fix for this, which is creating an implementation of the non-generic
SetUserDataDescriptor
...Will this cause any issues? What should this method do exactly? Currently I am utilizing reflection to get all ILuaModel
implementations, to call SetUserDataDescriptor
, and I just want to know what I should do here to make sure both LuaUser
and LuaMember
have their methods called appropriately.0 Replies