Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# では、イベント ハンドラーを登録するときに、次の 2 つのオプションがあります ( btnis of type System.Windows.Controls.Button)。
btn
System.Windows.Controls.Button
btn.Click += new RoutedEventHandler (ButtonClick) と
btn.Click += new RoutedEventHandler (ButtonClick)
btn.Click += ButtonClick.
btn.Click += ButtonClick
それらとその意味の意味的な違いは何ですか?