Yea.Reflection.Emit.Assembly.Assembly C# (CSharp) Method

Assembly() public method

Constructor
public Assembly ( string name, string directory = "", AssemblyType type = AssemblyType.Dll ) : System
name string Assembly name
directory string directory to save the assembly (if left blank, the assembly is run only and will not be saved)
type AssemblyType Assembly type (exe or dll)
return System
        public Assembly(string name, string directory = "", AssemblyType type = AssemblyType.Dll)
        {
            if (string.IsNullOrEmpty(name))
                throw new ArgumentNullException("name");
            Setup(name, directory, type);
        }