public NotifyConcurrentQueueChangedEventArgs(NotifyConcurrentQueueChangedAction action)
 {
     this.Action = action;
 }
 public NotifyConcurrentQueueChangedEventArgs(NotifyConcurrentQueueChangedAction action, T changedItem)
 {
     this.Action      = action;
     this.ChangedItem = changedItem;
 }