BooC.App.GetAssemblyLocation C# (CSharp) Метод

GetAssemblyLocation() статический приватный Метод

static private GetAssemblyLocation ( System.Reflection.Assembly a ) : string
a System.Reflection.Assembly
Результат string
        static string GetAssemblyLocation(Assembly a)
        {
            string loc;
            try
            {
                loc = a.Location;
            }
            catch (Exception)
            {
                loc = "<dynamic>"+a.FullName;
            }
            return loc;
        }