namespace Deppton.Mobile
{
using System.IO;
using System.Reflection;
public static class Utilities
{
public static string GetExecutionPath()
{
return Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName().CodeBase);
}
}
}