Determines whether or not comments that area placed above method definitions when creating script assets using the Create Script Wizard should be added as XML documentation comments with the summary tag.
True (Default)
Comments above method definitions will be added as XML documentation comments with triple forward slashes (///) and wrapped inside a summary tag.
Example:/// <summary>
/// This is an example summary.
/// </summary>
void ExampleMethod() { }
False
Comments above method definitions will be added as simple comments with double forward slashes (//).
Example:// This is an example simple comment.
void ExampleMethod() { }
See Also:
Create Script Wizard: Add Comments