Using a console project, I want to run the console window as UI to view and manage objects. At the same time, I want to run a simulation process that generates and manipulates the objects over time, that are managed in the console.
I thought i would make the simulation process asynchronous but I realised I can't really start it asynchronously since the console projects main method cannot be async. This won't work:
static async void Main(string[] args)
{}
So how is it supposed to be able to start a parallel thread using async?