public DictionaryChangedEventArgs(DictionaryEventType changeType, K key, V value, V oldValue)
 {
     EventType     = changeType;
     Key           = key;
     Value         = value;
     ReplacedValue = oldValue;
 }
 /// <summary>
 /// The constructor.
 /// </summary>
 /// <param name="type">The type of the event.</param>
 /// <param name="tag">The corresponding tag.</param>
 public DictionaryEventArgs(DictionaryEventType type, object tag)
 {
     this.Type = type;
     this.Tag = tag;
 }
예제 #3
0
 /// <summary>
 /// The constructor.
 /// </summary>
 /// <param name="type">The type of the event.</param>
 /// <param name="tag">The corresponding tag.</param>
 public DictionaryEventArgs(DictionaryEventType type, object tag)
 {
     Type = type;
     Tag  = tag;
 }
 /// <summary>
 /// The constructor.
 /// </summary>
 /// <param name="type">The type of the event.</param>
 /// <param name="tag">The corresponding tag.</param>
 public DictionaryEventArgs(DictionaryEventType type, object tag)
 {
     this.Type = type;
     this.Tag  = tag;
 }