Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rvknth043 authored Jun 24, 2016
1 parent a3ebff0 commit 35cdfe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ Using the Keyboard Hook:
```
private void keyboardHook_KeyUp(KeyboardHook.VKeys key)
{
SetText("[" + DateTime.Now.ToLongTimeString() + "] KeyUp Event {" + key.ToString() + "}");
Console.WriteLine("[" + DateTime.Now.ToLongTimeString() + "] KeyUp Event {" + key.ToString() + "}");
}
private void keyboardHook_KeyDown(KeyboardHook.VKeys key)
{
SetText("[" + DateTime.Now.ToLongTimeString() + "] KeyDown Event {" + key.ToString() + "}" );
Console.WriteLine("[" + DateTime.Now.ToLongTimeString() + "] KeyDown Event {" + key.ToString() + "}" );
}
```

Expand Down

0 comments on commit 35cdfe6

Please sign in to comment.