Ejemplo n.º 1
0
 protected void DispatchCharEvent(CharEventType charEventType, char @char)
 {
     this.CharEvent?.Invoke(new CharEvent(charEventType, @char));
 }
Ejemplo n.º 2
0
 public CharEvent(CharEventType eventType, char @char)
 {
     this.eventType = eventType;
     this.@char     = @char;
 }