Exemplo n.º 1
0
 public Event(String message, EVENT_FLAGS flags)
 {
     time         = DateTime.Now;
     this.message = message;
     this.flags   = flags;
     this.group   = "Default";
 }
Exemplo n.º 2
0
 public Event(String message, EVENT_FLAGS flags, String group) : this(message, flags)
 {
     this.group = group;
 }