using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
public static void Main()
Console.WriteLine("Hello World");
Stopwatch stopWatch = new Stopwatch();
List<Person> listLess, listMore, listCommonLess, listCommonMore;
for(int i=100; 1<1000; i+=10){
Person person = new Person();
for(int j=1; j<=i*i; j++){
listMore.Add(new Person());
listLess = listLess.Distinct().ToList();
listMore = listMore.Distinct().ToList();
var common1 = from first in listLess
listCommonLess = common1.ToList();
less = stopWatch.ElapsedMilliseconds;
var common2 = from first in listMore
listCommonLess = common2.ToList();
more = stopWatch.ElapsedMilliseconds;
commonCount = common1.Count() == common2.Count() ? common1.Count() : 0;
Console.WriteLine("Less=" + listLess.Count.ToString() + " : " + less + " | More="+listMore.Count.ToString() + " : " + more + " :: Match:" + commonCount);
public string FirstName { get; set; } = DateTime.Now.Second.ToString();
public string LastName { get; set; } = DateTime.Now.Millisecond.ToString();
public int Age { get; set; } = new Random(DateTime.Now.Millisecond).Next(10, 51);
public override bool Equals(object obj){
Person person = obj as Person;
return person != null && this.Equals(person);
public bool Equals(Person person){
return person.FirstName == this.FirstName && person.LastName == this.LastName && person.Age == this.Age;