CompilerType.CompilerParameters Property

Definition

Gets the settings and options used to compile source code into an assembly.

public:
 property System::CodeDom::Compiler::CompilerParameters ^ CompilerParameters { System::CodeDom::Compiler::CompilerParameters ^ get(); };
public System.CodeDom.Compiler.CompilerParameters CompilerParameters { get; }
member this.CompilerParameters : System.CodeDom.Compiler.CompilerParameters
Public ReadOnly Property CompilerParameters As CompilerParameters

Property Value

A read-only CompilerParameters object that represents the settings and options of the code compiler.

Remarks

Use the CompilerParameters property to examine the compiler options configured for the compiler. The CompilerParameters property specifies whether warnings are treated as errors, whether the compiler output includes debug information, and other compiler settings.

Applies to

See also