同じ署名を持つ一連のイベントに列挙型をマップする辞書を作成しようとしています。私が書いた :
public enum Events {Insert, Update, Delete};
// this part makes errors
Dictionary<Events,EventHandler<T>> EventsDic = new Dictionary<Events,EventHandler<T>>()
{
{ Events.Insert , this.ItemInserted}
};
どうしたの ?