windows-mobile – 如何在紧凑框架中获取当前目录?

前端之家收集整理的这篇文章主要介绍了windows-mobile – 如何在紧凑框架中获取当前目录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何获取应用程序正在运行的当前目录?
你可以试试这个:
using System.IO;
using System.Reflection;

namespace Utilities
{
    static public class DirectoryHelper
    {
        static public string GetCurrentDirectory ()
        {
            return Path.GetDirectoryName (Assembly.GetExecutingAssembly ().GetName ().CodeBase);
        }
    }
}
原文链接:https://www.f2er.com/windows/371183.html

猜你在找的Windows相关文章