Files
CSharp-learning/C# Full Course for free/1.Starting a project.md
2026-01-11 22:14:28 +01:00

18 lines
295 B
Markdown

# Starting a project
The project inizialize automaticly inside visual studio
```C#
Console.WriteLine("Helo World!");
```
you can run the program by run
you can change the font and the windows and the executing code
You can make the console Beep with the function
```C#
Console.Beep();
```