You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mchsamples-.net-core/ex_023_003_IEnumerator_ex3/Program.cs

28 lines
700 B

// ========================================================================
//
// Copyright (C) 2016-2017 MARC CHEVALDONNE
// marc.chevaldonne.free.fr
//
// Module : Program.cs
// Author : Marc Chevaldonné
// Creation date : 2016-09-28
//
// ========================================================================
using static System.Console;
namespace ex_023_003_IEnumerator_ex3
{
class Program
{
static void Main(string[] args)
{
StrangeCollection col = new StrangeCollection();
foreach (int i in col)
{
WriteLine(i);
}
}
}
}