Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- string[] cars = {"Alfa Romeo", "BMW", "Chevrolet", "Dacia"}; //Everything but the BMW is also found in this script https://pastebin.com/PvqJawb2
- Console.WriteLine(cars[0]); //Outputs Alfa Romeo
- Console.WriteLine(cars[1]); //Outputs BMW
- Console.WriteLine(cars[2]); //Outputs Chevrolet
- Console.WriteLine(cars[3]); //Outputs Dacia
Add Comment
Please, Sign In to add comment