CompilerOptions.CompilerOptions C# (CSharp) Method

CompilerOptions() public method

public CompilerOptions ( ) : System
return System
  public CompilerOptions(){
    this.autoRef = true;
    this.PEFileKind = PEFileKinds.ConsoleApplication;
    this.PEKindFlags = PortableExecutableKinds.ILOnly;
    this.PEMachineArchitecture = ImageFileMachine.I386;
    this.fFast = true;
    this.fPrint = true;
    this.nWarningLevel = 4;
    this.SourceFileNames = new ArrayList();
    this.ImportFileNames = new ArrayList();
    this.ManagedResourceFileNames = new Hashtable(10);
    this.ManagedResources = new Hashtable(10);
    this.Defines = new Hashtable();
    string libpath = System.Environment.GetEnvironmentVariable("LIB");
    if (libpath != null)
      this.libpath = libpath;
    else
      this.libpath  = "";
  }
};
CompilerOptions