Skip to content

3.1.12

Compare
Choose a tag to compare
@Simnico99 Simnico99 released this 25 Jan 15:02
· 87 commits to main since this release

(Corrected)

Fixed build issues.
Added extension for range to be able to write for loops more cleanly in netcoreapp3.1+

//Old
for(var i = 0; i <= 10; i++)
{
  Console.WriteLine(i.ToString());
}


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

Special credits to Nick Chapsas on youtube for this method.
Aka @Elfocrash on GitHub.

Full Changelog: 3.1.10...3.1.11