Zetbox.API.AssemblyLoader.ReflectionOnlyLoadFrom C# (CSharp) Method

ReflectionOnlyLoadFrom() public static method

Loads an Assembly for Reflection only. This method does not cache the requested Assemblies.
public static ReflectionOnlyLoadFrom ( string name ) : Assembly
name string Assemblyname, passed to a AssemblyName Consructor.
return System.Reflection.Assembly
        public static Assembly ReflectionOnlyLoadFrom(string name)
        {
            return LoadAssemblyByName(name, true);
        }