I am writing an application in WinForms C #, whose length exceeds 90 thousand lines. I am not a very experienced coder and after some lines of code (depending on whether it is something new or something that I have done many times before), I run my project using F5 in Visual Studio to make sure everything that I did works as I wanted it.
For instance:
if the data from SQL filled in the ListView correctly
if the sort ListView working properly (the new integrated feature)
If docx and docx creates works created with the correct formatting
If the calculation is performed correctly
Is this the right way to do this? Or are there better ways? At the moment, I launch my application in about 5-10 seconds, so this is not very important, but maybe there is better than doing it, as I do it.
I encode this application on only one computer.
source
share