Skip to content

Instantly share code, notes, and snippets.

@flarn2006
flarn2006 / Counter.cs
Last active December 24, 2015 01:29
Just a simple class that implements IEnumerable.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YourNamespaceHere // this sucks for copying classes between projects
{
public class Counter : IEnumerable<int>
{
private int min, max, step;