Description
The PrintErrorsInConsole
property of the CompileGroup
class indicates whether errors encountered during the compilation process should be printed to the console. This property is useful for debugging and monitoring the compilation process, allowing developers to quickly identify and address issues as they arise.
Usage
To use the PrintErrorsInConsole
property, simply access it from an instance of the CompileGroup
class. You can set it to true
if you want errors to be printed to the console, or false
if you prefer to suppress error messages in the console output.
Example
// Example of setting the PrintErrorsInConsole property
CompileGroup compileGroup = new CompileGroup();
// Enable printing errors to the console
compileGroup.PrintErrorsInConsole = true;
// Disable printing errors to the console
compileGroup.PrintErrorsInConsole = false;