❔ Running a small part of a forms project?
I'm writing a windows forms app. Within in I have a small piece of logic that I will use but which doesnt actually display anything or interact with the rest of the project. Like a utility function.
I want to try it out and see if it works how I want. But I don't want to use it in Program.cs (which already has lots going on) and build the entire project. If I were using Python or Javascript, I would import just the module I need in a REPL and play with it. How do I do something like this in C# without creating a whole new project for the code I want to see running?
I want to try it out and see if it works how I want. But I don't want to use it in Program.cs (which already has lots going on) and build the entire project. If I were using Python or Javascript, I would import just the module I need in a REPL and play with it. How do I do something like this in C# without creating a whole new project for the code I want to see running?
