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;
        }