I'm very new to programming, and I've noticed that in all of my programs' visual studio is not showing the supposed to be first lines of the code (all of the "using system" stuff) I wanted to know how to fix that, so it will show up when I start a new project.
1
votes
Welcome to Stack Overflow! Please remember that Stack Overflow is not your favourite forum for the programming language you're using, but rather a question and answer site for all programming related questions. Thus, please always include the tag of the language you are programming in, that way other users familiar with that language can more easily find your question. See How to Ask and then edit the question accordingly please.
- Adriaan
One of the new "features" of C# 10 is "top level statements" - i think it's aimed at removing overhead before you write actual code, but what it mostly seems to do is break all of the example code you find on the web. Here's a starting discussion / intro to it. docs.microsoft.com/en-us/dotnet/csharp/fundamentals/…
- GregHNZ