When you open the Task Manager in Windows, you see process names.
开发者_JAVA技巧For any given c# application, how do you set that name?
The application name is the title of the form being displayed.
The process name is the name of the executable.
The process description is controlled via the AssemblyTitle attribute typically found in AssemblyInfo.cs:
[assembly: AssemblyTitle("Your process description here")].
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.
精彩评论