Esempio n. 1
0
 private void RotatePlanet(Planets planetName)
 {
     Console.WriteLine($"{planetName} rotates around the sun.");
 }
Esempio n. 2
0
 private SolarSystem(Planets planetName, int placeInGalaxy)
 {
     PlanetName    = planetName;
     PlaceInGalaxy = placeInGalaxy;
 }