Appcelerator.ServiceManager.LoadSingleAssembly C# (CSharp) Method

LoadSingleAssembly() private method

Loads a single assembly given its full path
private LoadSingleAssembly ( String file_location ) : void
file_location String The full path location of the file from which to load assemblies
return void
        private void LoadSingleAssembly(String file_location)
        {
            try
            {
                Assembly assy = Assembly.LoadFile(file_location);
                //RegisterServicesFromAssembly(assy);
            }
            catch
            {
                Logger.Instance.Error("Unable to load services from " + file_location);
            };
        }