How to you calculate Execution time of your C#, Windows Application.
Are there any industry recognized methods?
Use the GetTickCount() API function when you enter Main() and again when you're about to exit it, and take the difference between them to get the number of milliseconds your program took.