Add source package / namespace .NET documentation for processing with Doxygen

I use the documentation documentation for oxygen and XML to create internal API documentation for our frameworks.

Doxygen creates a “package” for the namespace. I wonder if it is possible to add source documentation at the namespace level for display in the Doxygen package view?

+3
source share
1 answer

This can be done using the standard XML comment style <summary>.

, Visual Studio , , .

:

using System;
using System.Web;
using System.Web.Caching;

/// <summary> 
/// Testing namespace package descriptions
/// </summary>
namespace MyProject.Caching
{
   ...

XML- . , , , Doxygen, . , .

, Doxygen , , .

+7

Source: https://habr.com/ru/post/1780652/


All Articles