tusher318

Untitled

May 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. ublic interface IInterface
  2. {
  3. void show();
  4. }
  5.  
  6. public class MyClass : IInterface
  7. {
  8.  
  9. #region IInterface Members
  10.  
  11. public void show()
  12. {
  13. Console.WriteLine("Hello World!");
  14. }
  15.  
  16. #endregion
  17. }
Add Comment
Please, Sign In to add comment