string XmlDocumentation { get; set; }

robot_2Generated
code_blocksInput

Description

The XmlDocumentation property provides the XML documentation content generated for the assembly during the build process. This documentation is typically used to provide detailed information about the code, such as summaries, remarks, and parameter descriptions, which can be utilized by developers for better understanding and usage of the codebase.

Usage

To access the XML documentation of a build, you can use the XmlDocumentation property of the CompilerOutput class. This property returns a string containing the XML content.

Example usage:

CompilerOutput output = new CompilerOutput();
string xmlDoc = output.XmlDocumentation;
// Use xmlDoc as needed, for example, to display or save the documentation

Example

CompilerOutput output = new CompilerOutput();
string xmlDoc = output.XmlDocumentation;
// Use xmlDoc as needed, for example, to display or save the documentation