Can custom attributes be included in the Sandcastle specification?
For example, consider this C # method:
public void ExampleMethod ( [Required] string input1, [DefaultValue("example")] string input2 )
Is there a way to infer Sandcastle documentation that input1 has the required attribute?
source share