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