public bool Equals(MillisDelayClass other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(other._trigger == _trigger);
 }
 static DelayQueueTest()
 {
     MillisDelayClass.Load();
     MillisDelayStruct.Load();
 }