Sometimes when you're writing code, you want to verify an assumption quickly, check how your API works, or simply prototype and execute a small part of your code.
What common options are available to us?
Create a separate small project, put the code to verify into its Main() method, and add a…