StaticemptyCreates an empty Enumerable.
A new empty Enumerable.
StaticfromCreates a new Enumerable from the input Iterable.
The Iterable to create an Enumerable from.
A new Enumerable.
StaticfromStaticisDetermines if the passed in object is an Enumerable.
The item to test if it is an Enumerable or not.
True if the obj is an Enumerable. False if not.
StaticrangeGenerates a sequence of integral numbers within a specified range.
The value of the first integer in the sequence.
The number of sequential integers to generate.
An IEnumerable
StaticrepeatGenerates a sequence that contains one repeated value.
The value to be repeated.
The number of times to repeat the value in the generated sequence.
An IEnumerable
Provides a set of static methods for IEnumerable.