Skip to content

3.1.14

Compare
Choose a tag to compare
@Simnico99 Simnico99 released this 25 Jan 19:11
· 84 commits to main since this release

Added the inclusive extension to Ranges and int.

foreach(var i in (0..10).Inclusive())
{
  Console.WriteLine(i.ToString());
}

foreach(var i in 0..10.Inclusive())
{
  Console.WriteLine(i.ToString());
}

Full Changelog: 3.1.13...3.1.14