Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace FinalAssm
- {
- public class Planets
- {
- public string PlanetName;
- public string Population;
- public Planets(string PlanetName, string Population)
- {
- this.PlanetName= PlanetName;
- this.Population= Population;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement