CompileGroup Group { get; set; }

robot_2Generated
code_blocksInput

Description

The Group property of the Compiler class represents the compile group to which the compiler belongs. Each compiler instance must be associated with a specific compile group, which helps in organizing and managing the compilation process.

Usage

To access or modify the compile group of a Compiler instance, use the Group property. This property is not static, so it must be accessed through an instance of the Compiler class.

Example

// Example of accessing the Group property

// Create a new Compiler instance
Compiler myCompiler = new Compiler();

// Access the Group property
CompileGroup currentGroup = myCompiler.Group;

// Set a new compile group
CompileGroup newGroup = new CompileGroup();
myCompiler.Group = newGroup;