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