I am trying to declutter my classes that contain a fair amount of code. I want to also document and document well. Unfortunately for me to do this all in one file creates chaos for the eyes personally. It's gross and for quick developing it creates mass amounts of unnecessary eye catching text to comb through.
<include>
seemed promising to achieve this, while maintaining intellisense functionality. Ie the included Xml documentation summary would show in the tooltip, just as it does if the Xml documentation was declared right above the method.
Perhaps I misunderstood <include>
, but I did this and the tooltip did not include the Xml documentation that was in the other file.
Here is how I have it setup now:
/// <include file='xml_include_tag.xml' path='include/member[@name="Foo"]/*' />
private String Foo()
{
return "Foo";
}
The Xml file looks like this:
<include>
<member name="Foo">
<summary>
Returns "Foo"
</summary>
<returns></returns>
</member>
</include>
Am I using this correctly or is this not even possible to achieve with the provided toolset?
Thanks in advance!