LadderGoat
New member
- Joined
- Jan 6, 2020
- Messages
- 1
- Programming Experience
- Beginner
Hi everyone,
I'm kinda new to programming C# but i have some experience in creating plugins for counter-strike 1.6.
My problem is, everytime i start a new project, i get a basic layout with the line:
So my question is if this basic layout can be changed?
I would like to have a basic startup layout looking like this:
I'm using Visual Studio 2019.
Thanks in Advance
I'm kinda new to programming C# but i have some experience in creating plugins for counter-strike 1.6.
My problem is, everytime i start a new project, i get a basic layout with the line:
PHP:
Console.WriteLine("Hello World!");
So my question is if this basic layout can be changed?
I would like to have a basic startup layout looking like this:
PHP:
static void Main(string[] args)
{
Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = ConsoleColor.Green;
Console.Clear();
}
I'm using Visual Studio 2019.
Thanks in Advance
Last edited: