Mono.Rocks.Int32Rocks.Times C# (CSharp) Метод

Times() публичный статический Метод

public static Times ( this self ) : IEnumerable
self this
Результат IEnumerable
        public static IEnumerable<int> Times(this int self)
        {
            if (self < 0)
                throw new ArgumentOutOfRangeException ("self", "must be >= 0");
            return CreateTimesIterator (self);
        }