I'm using Visual Studio 2022 with .NET 6.0 framework. The following no longer exists and I usually write whatever that'll be inside this static void Main method directly in the "Program" that is automatically generated when creating a new project.
static void Main(string[] args)
However, if I need to have some static methods outside the static void Main method, it won't work to just write them inside "Program". How can I add these static methods then?
Thank you so much for your help!!