| 
        public class CompilerParameters
       | 
| ctor #1 | Overloaded: .ctor()Default constructor. This constructor is called by derived class constructors to initialize state in this type.Initializes a new instance of the CompilerParameters class. | 
| ctor #2 | Overloaded: .ctor(string[] assemblyNames)Initializes a new instance of the  CompilerParameters class using the specified assembly names. | 
| ctor #3 | Overloaded: .ctor(string[] assemblyNames, string outputName)Initializes a new instance of the  CompilerParameters class using the specified assembly names and output file name. | 
| ctor #4 | Overloaded: .ctor(string[] assemblyNames, string outputName, bool includeDebugInformation)Initializes a new instance of the  CompilerParameters class using the specified assembly names, output name, and a value indicating whether to include debug information. | 
| CompilerOptions | Read-write Gets or sets the compiler options for the compiler to use. | 
| GenerateExecutable | Read-write Gets or sets a value indicating whether to generate an executable. | 
| GenerateInMemory | Read-write Gets or sets a value indicating whether to generate the output in memory. | 
| IncludeDebugInformation | Read-write Gets or sets a value indicating whether to include debug information in the compiled executable. | 
| MainClass | Read-write Gets or sets the name of the main class. | 
| OutputAssembly | Read-write Gets or sets the name of the output assembly. | 
| ReferencedAssemblies | Read-only Gets or sets the assemblies referenced by the current project. | 
| TempFiles | Read-write Gets or sets the temporary files to use. | 
| TreatWarningsAsErrors | Read-write Gets or sets a value indicating whether to treat warnings as errors. | 
| UserToken | Read-write Gets or sets the user token to use when creating the compiler process. | 
| WarningLevel | Read-write Gets or sets the warning level at which the compiler aborts compilation. | 
| Win32Resource | Read-write Gets or sets the filename of a Win32 resource file to link into the compiled assembly. | 
| Equals (inherited from System.Object) | See base class member description: System.Object.Equals Derived from System.Object, the primary base class for all objects. | 
| GetHashCode (inherited from System.Object) | See base class member description: System.Object.GetHashCode Derived from System.Object, the primary base class for all objects. | 
| GetType (inherited from System.Object) | See base class member description: System.Object.GetType Derived from System.Object, the primary base class for all objects. | 
| ToString (inherited from System.Object) | See base class member description: System.Object.ToString Derived from System.Object, the primary base class for all objects. | 
| Finalize (inherited from System.Object) | See base class member description: System.Object.Finalize Derived from System.Object, the primary base class for all objects. | 
| MemberwiseClone (inherited from System.Object) | See base class member description: System.Object.MemberwiseClone Derived from System.Object, the primary base class for all objects. | 
Hierarchy:
| 
            public CompilerParameters(); | 
| 
            public CompilerParameters( | 
assemblyNames
assemblyNames
outputName
| 
            public CompilerParameters( | 
assemblyNames
outputName
includeDebugInformation
| 
            public string CompilerOptions {get; set;}
           | 
| 
            public bool GenerateExecutable {get; set;}
           | 
| 
            public bool GenerateInMemory {get; set;}
           | 
| 
            public bool IncludeDebugInformation {get; set;}
           | 
| 
            public string MainClass {get; set;}
           | 
| 
            public string OutputAssembly {get; set;}
           | 
| 
            public StringCollection ReferencedAssemblies {get;}
           | 
| 
            public TempFileCollection TempFiles {get; set;}
           | 
| 
            public bool TreatWarningsAsErrors {get; set;}
           | 
| 
            public IntPtr UserToken {get; set;}
           | 
| 
            public int WarningLevel {get; set;}
           | 
| 
            public string Win32Resource {get; set;}
           | 
| 
            ~CompilerParameters(); | 
| 
            public virtual int GetHashCode(); | 
| 
            public Type GetType(); | 
| 
            protected object MemberwiseClone(); | 
| 
            public virtual string ToString(); |