このクラスがあるとします:
class FooBar
{
public FooBar() : this(0x666f6f, 0x626172)
{
}
public FooBar(int foo, int bar)
{
...
}
...
}
私がこれをした場合:
FooBar foobar = new FooBar();
パラメータ化されていないコンストラクタが最初に実行され、次にパラメータ化されたコンストラクタが実行されますか、それともその逆ですか?