EventHandler がSystem.EventArgs 型に制約されていないことを偶然に (コンパイルするとは思わなかったものがコンパイルされたときに)わかりました。
インライン ドキュメントは次のとおりです。
#region Assembly mscorlib.dll, v4.0.0.0
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\mscorlib.dll
#endregion
namespace System
{
// Summary:
// Represents the method that will handle an event.
//
// Parameters:
// sender:
// The source of the event.
//
// e:
// An System.EventArgs that contains the event data.
//
// Type parameters:
// TEventArgs:
// The type of the event data generated by the event.
[Serializable]
public delegate void EventHandler<TEventArgs>(object sender, TEventArgs e);
}
これはドキュメントと実装の不一致ですか?
気になったので質問します。それはまったく苦情ではありません。