When you create a console application and then run it you get a console window (a DOS box if you like). I want to change the title of this.
In Win32 SDK there is a function called SetConsoleTitle, which will work with P/Invoke, but I thought there might be something done already as part of the .NET framework (like Console.Title = "new title";).
I know my way around the windows API but I don't want to re-make the wheel (as it were) in .NET (I'm pretty new to .NET so I'm just trying to feel my way around).
Kep.
|