c# wince 获取当前应用 绝对路径

有的时候引用相对路径出问题, 还是用绝对路径更靠谱一些,



      string str = Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetModules()[0].FullyQualifiedName);
      MessageBox.Show(str);
      


你可能感兴趣的:(c# wince 获取当前应用 绝对路径)