I have a WinForms application written in C# for .NET 3.5 that needs to show a specific name in the Task Manager\'s Applications tab. However, I need for this text to be differen
VB6.0 forms applications used a hidden "parking window" as the true main window of the application. This is how it allowed the task manager name to differ from the main window name. In .Net applications the main window is the true main window of the application.
You could replicate the behavior by starting a hidden form which calls your displayable form but I don't recommend it since you risk getting your application into a state where there is no visible UI but the process is still running.