-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
42 lines (34 loc) · 1.02 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.IO;
//using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Introduction.Extensions;
namespace Introduction
{
class Program
{
static void Main(string[] args)
{
IEnumerable<Employee> firstList = new Employee[]
{
new Employee {Id = 1, Name = "Pedro"},
new Employee {Id = 2, Name = "Elemar"}
};
IEnumerable<Employee> secondList = new List<Employee>
{
new Employee {Id = 1, Name = "Carlos"},
};
//IEnumerator<Employee> enumerator = firstList.GetEnumerator();
IEnumerator<Employee> enumerator = secondList.GetEnumerator();
//int count = firstList.Count();
while (enumerator.MoveNext())
{
Console.WriteLine(enumerator.Current.Name);
}
// without LINQ
Console.ReadKey();
}
}
}