This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am PhilipRieck on github. | |
* I am philipr (https://keybase.io/philipr) on keybase. | |
* I have a public key whose fingerprint is 303B E093 84B7 4FFD 1AD2 377A 0F7D 6289 E54C 422C | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
namespace QuickCS | |
{ | |
interface ITarget | |
{ | |
void DoNothing(int i); | |
} |