modern-forms / Modern.Forms-Templates

dotnet templates for Modern.Forms
MIT License
1 stars 0 forks source link

increment counter before use #1

Closed ghost closed 2 years ago

ghost commented 2 years ago

This is nit-picky, I apologize, but the line label.Text = $"Clicked {counter++} times!"; in MainForm.cs template file should be label.Text = $"Clicked {++counter} times!";

PS -- Thanks for the MF project, and for doing project templates to get us started!! :-)

jpobst commented 2 years ago

Doh! Thanks for the heads up!