本文介绍了如何在C#中执行相同的java扩展类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在java中有示例扩展类,我想在c中做同样的事情#
I have sample extends class in java and i wanna do the same in c#
public abstract class CreatureController<T extends Creature> extends VisibleObjectController<Creature>
我尝试过:
我试过这个,但只是可以扩展Creature类,我错过了扩展VisibleObjectController,但我不知道怎么回事。
What I have tried:
I tried this but just can extends Creature class only, im missed extends VisibleObjectController but i dont know how todo it.
public abstract class CreatureController<T> where T : Creature
推荐答案
public abstract class CreatureController<T> : VisibleObjectController<Creature> where T : Creature
{
// class code here
}
这篇关于如何在C#中执行相同的java扩展类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!