The Archive
property of the CompilerOutput
class represents a code archive that is created during the compilation process. This archive contains the compiled code and related resources, encapsulated in a CodeArchive
object.
The Archive
property of the CompilerOutput
class represents a code archive that is created during the compilation process. This archive contains the compiled code and related resources, encapsulated in a CodeArchive
object.
To access the Archive
property, you need an instance of the CompilerOutput
class. This property is read-only and provides access to the CodeArchive
generated during the compilation.
// Assuming 'compilerOutput' is an instance of CompilerOutput CodeArchive codeArchive = compilerOutput.Archive; // Use the codeArchive object as needed // For example, you might want to extract files or inspect the contents if (codeArchive != null) { // Perform operations with the code archive }