tusher318

Untitled

May 21st, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. public 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