From f6975f68b1f4b90c956903b8725e54b5ee81e0f0 Mon Sep 17 00:00:00 2001 From: CreepyCrafter24 <33260128+CreepyCrafter24@users.noreply.github.com> Date: Tue, 7 Apr 2020 21:05:36 +0200 Subject: [PATCH] Add a quick message to the console after startup --- cashew/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cashew/Program.cs b/cashew/Program.cs index 551e558..bacced4 100644 --- a/cashew/Program.cs +++ b/cashew/Program.cs @@ -10,7 +10,8 @@ namespace cashew { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Console.Title = "The Cashew Project - Native Shell"; + Console.Title = "The Cashew Project - Native Shell (do not close)"; + Console.WriteLine("Welcome to Cashew. Your programs output will be redirected here"); Application.Run(new MainForm()); } }