Advertisement
wingman007

C#_OOP_433_1a_Introducable.cs

Mar 21st, 2014
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOP6
  7. {
  8.     interface Introducable
  9.     {
  10.         void IntroduceYourSelf();
  11.         string AreYouHappy();
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement