26 lines
516 B
C#
26 lines
516 B
C#
using System;
|
|
|
|
namespace Pluralsight.BegCShCollections.DaysOfWeek
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
string[] daysOfWeek = {
|
|
"Monday",
|
|
"Tuesday",
|
|
"Wednesday",
|
|
"Thursday",
|
|
"Friday",
|
|
"Saturday",
|
|
"Sunday"
|
|
};
|
|
|
|
foreach (var day in daysOfWeek)
|
|
{
|
|
Console.WriteLine(day);
|
|
}
|
|
}
|
|
}
|
|
}
|