I am wondering how linking between files works behind the scenes. It's easy to add reference to another project in Visual Studio and point the namespace if it's different. But how do I do this without IDE? Sometimes I want to test something and don't want to create a new Console App for the 1000th time. I guess the notepad is better in such situation.
Here, on the screen, you can see 2 simple .cs files located in the same folder: https://i.stack.imgur.com/PGmSq.jpg Both have the same namespace. Probably there's some way to point the path to another file to make Supportive class visible in Program.cs? (Creating .dll and linking it didn't help, maybe I did it wrong)