Advertisement
Guest User

Untitled

a guest
Aug 16th, 2016
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System;
  2. namespace FinalAssm
  3. {
  4.  
  5.     public class Planets
  6.     {
  7.         public string PlanetName;
  8.         public string Population;
  9.        
  10.         public Planets(string PlanetName, string Population)
  11.         {
  12.             this.PlanetName= PlanetName;
  13.             this.Population= Population;
  14.         }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement