如何使用C#在Windows-ce中获取我的程序名称?

时间:2011-03-02 12:07:18

标签: c# windows-ce

如何使用C#在Windows-ce中获取我的程序名称?

如果我将我的计划名称更改为ABC.exe,我想阅读ABC

怎么做?

提前致谢

2 个答案:

答案 0 :(得分:4)

您可以使用Path.GetFileNameWithoutExtension获取不带.exe的文件名,如下所示:

String exe_name =      
   Path.GetFileNameWithoutExtension(
      Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName);

答案 1 :(得分:-1)

你可以尝试这样的事情。

string path = Process.GetCurrentProcess().StartInfo.FileName;
string name = Path.GetFileNameWithoutExtension(path);