/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/csharp/array1.cs
22 строки
780 B
Genevieve Warren
Add remarks for core types (#38970)
05 янв 2024, 22:14
Не верифицирован
05 янв 2024, 22:14
71d1377
Код
Авторство
О чём код?
using System; public class Example { public static void Main() { // <Snippet10> String[] cities = { "Atlanta", "Boston", "Chicago", "Detroit", "Fort Wayne", "Greensboro", "Honolulu", "Indianapolis", "Jersey City", "Kansas City", "Los Angeles", "Milwaukee", "New York", "Omaha", "Philadelphia", "Raleigh", "San Francisco", "Tulsa", "Washington" }; Random rnd = new Random(); int index = rnd.Next(0, cities.Length); Console.WriteLine("Today's city of the day: {0}", cities[index]); // The example displays output like the following: // Today's city of the day: Honolulu // </Snippet10> } }