예제 #1
0
 protected KeyPress All(KeyPress key1, KeyPress key2, KeyPress key3)
 {
     return(key1.Join(key2).Join(key3));
 }
예제 #2
0
 protected KeyPress Both(KeyPress key1, KeyPress key2)
 {
     return(key1.Join(key2));
 }
예제 #3
0
 public static KeyPress Plus(this KeyPress key1, KeyPress key2)
 {
     return(key1.Join(key2));
 }