How to call protected constructor in c#?

后端 未结 8 1911
不知归路
不知归路 2021-02-19 00:51

How to call protected constructor?

public class Foo{
  public Foo(a lot of arguments){}
  protected Foo(){}
}
var foo=???

This obviously fails

8条回答
  •  自闭症患者
    2021-02-19 01:12

    If you need to explicitly call the constructor of you base class in your subclass, you have to use the keyword base

提交回复
热议问题