Generate
Usage
IEnumerable<int> result = CollectionModule.Generate(1, 5, 3, 2);
//result = { 1, 5, 3, 2 }IEnumerable<int> result =
CollectionModule.Generate("Hello", " ", "World", " and ", "Tango");
//result = { "Helo", " ", "World", " and ", "Tango" }Last updated