Exemplo n.º 1
0
 public PendingEvent(PendingEventType type)
 {
     Type  = type;
     Item  = default;
     Index = -1;
 }
Exemplo n.º 2
0
 public PendingEvent(PendingEventType type, T item, int index)
 {
     Type  = type;
     Item  = item;
     Index = index;
 }
Exemplo n.º 3
0
 public PendingEvent(PendingEventType type, int index)
 {
     Type  = type;
     Item  = default;
     Index = index;
 }
Exemplo n.º 4
0
 public PendingEvent(PendingEventType type, T item)
 {
     Type  = type;
     Item  = item;
     Index = -1;
 }
 public PendingEvent(PendingEventType type)
 {
     Type  = type;
     Item  = default !;