1
をコンストラクタにパラメータ:依存関係と
[Dependency]
public qwe property { get; set; }
そして:
私が登録したときのint Unityが取るコンストラクタで私のクラスのQWEを作成するように私はUnityを設定するにはどうすればよいclass qwe
{
public qwe()
{
MessageBox.Show("qwe");
}
public qwe(int x)
{
MessageBox.Show("qwe INT");
}
}
intですが、int値を登録していない場合、Unityはパラメータがゼロのコンストラクタを使用します。