Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- interface I<T>
- {
- void M(int x); // Rename me or remove parameter.
- }
- class Program : I<string>, I<int>
- {
- void I<string>.M(int x) { }
- void I<int>.M(int x) { }
- static void Main() { }
- }
Advertisement
Add Comment
Please, Sign In to add comment