Advertisement
Guest User

12

a guest
Jul 22nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace OopCool
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.         }
  14.         class House
  15.         {
  16.             ConsoleColor color;
  17.             string adddres;
  18.             int maxlife;
  19.             private string[] tenant;
  20.            /* public static void House (ConsoleColor color, string addres, int maxlife, string[] tensnt)
  21.             {
  22.  
  23.  
  24.             }*/
  25.  
  26.         }
  27.         class Tenant
  28.         {
  29.             string Name;
  30.             byte olds;
  31.         }
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement