Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

2011-08-12から1日間の記事一覧

イベントハンドラーの設定に"new EventHandler(〜)"は不要

イベントにハンドラーを設定するとき、 public Hoge() { this.Load } ここまで書いて、"+="を入力すると、Tab2回入力で以下の雛型が作成されます。 public Hoge() { this.Load += new EventHandler(Hoge_Load); } void Hoge_Load(object sender, EventArgs …