6

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);
}

これはドキュメントと実装の不一致ですか?

気になったので質問します。それはまったく苦情ではありません。

4

1 に答える 1

5

型制約は .net 4.5 で削除されました。

これが .net 4.5 署名です。 http://msdn.microsoft.com/en-us/library/db0etb8x%28v=vs.110%29.aspx

[SerializableAttribute]
public delegate void EventHandler<TEventArgs>(
    Object sender,
    TEventArgs e
)

これが .net 4.0 署名です。 http://msdn.microsoft.com/en-us/library/db0etb8x%28v=vs.100%29.aspx

[SerializableAttribute]
public delegate void EventHandler<TEventArgs>(
    Object sender,
    TEventArgs e
)
where TEventArgs : EventArgs
于 2013-04-01T03:37:26.607 に答える