调用我的私有构造函数

Rod*_*Rod 0 winforms

有没有办法从我的公共构造函数调用我的私有构造函数?

public class MyClass
{


  public MyClass(string id)
  {
    //Want to call MyClass() constructor here somehow
  }

  private MyClass()
  {

  }

}
Run Code Online (Sandbox Code Playgroud)

vc *_* 74 9

public MyClass(string id) : this()
{
}
Run Code Online (Sandbox Code Playgroud)