[Doxygen-users] .NET and C# XML command to make private
Brought to you by:
dimitri
From: Robert W. <rw...@er...> - 2015-03-06 14:53:11
|
We have XML documentation in our existing C# files. I don’t see a way of hiding functions from the documents (like using: /** @private */ in java, C, C++) /// <summary> /// The XServer method Gets or Sets the XServer based on the server name or IP address /// <para>for internal use only</para> /// <value>A string representing the name or IP address of the server. Ie. sampleserver or 10.0.0.1 </value> /// </summary> public string XServer { get { return _xServer; } set { _xServer = value; } } Does anyone have any ideas? I thought this might help, but it says Doxygen ignores it. <permission> Identifies the security accessibility of a member. Ignored by doxygen. RW |