开发者

In a C# application, where does Windows grab the name of process when it appears in the Task Manager?

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜