views:

104

answers:

2

When you open the Task Manager in Windows, you see process names.

For any given c# application, how do you set that name?

+2  A: 

The application name is the title of the form being displayed. The process name is the name of the executable. The description of the process is the description in the EXE properties.

George
+3  A: 

For any given c# application, how do you set that name?

If you're using Visual Studio, go to the project properties and set the assembly name at the Application tab.

Fernando