Add Iterator pattern
This commit is contained in:
29
src/IteratorPattern/IteratorPatternExamples.cs
Normal file
29
src/IteratorPattern/IteratorPatternExamples.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using IteratorPattern.FileExample;
|
||||
using IteratorPattern.TVExample.TVEnumerable;
|
||||
using IteratorPattern.TvIterator;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace IteratorPattern
|
||||
{
|
||||
// This project can output the Class library as a NuGet Package.
|
||||
// To enable this option, right-click on the project and select the Properties menu item. In the Build tab select "Produce outputs on build".
|
||||
public class IteratorPatternExamples
|
||||
{
|
||||
public static void Run()
|
||||
{
|
||||
ReadBigFilesExample bigFileExample = new ReadBigFilesExample();
|
||||
bigFileExample.Run();
|
||||
|
||||
TVIteratorExample tvIteratorExample = new TVIteratorExample();
|
||||
tvIteratorExample.Run();
|
||||
|
||||
TVEnumerableExample tvEnumerableExample = new TVEnumerableExample();
|
||||
tvEnumerableExample.Run();
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user