I'm sure this question has been asked before.
I'm sure this question has been asked before.
Where can I find the documentation for Delphi's xml documentation
in the source code.
Specifically how to I refer to an type B in type A's xmldoc summary.
**TSliceData = array[0..31] of byte;
///
/// TByteSet is an alternative representation for TSliceData.
///
TByteSet = set of byte;**
I tried googling and SO, but no definitive list of all available options showed up.
Where can I find the documentation for Delphi's xml documentation
in the source code.
Specifically how to I refer to an type B in type A's xmldoc summary.
**TSliceData = array[0..31] of byte;
///
/// TByteSet is an alternative representation for TSliceData.
///
TByteSet = set of byte;**
I tried googling and SO, but no definitive list of all available options showed up.
http://docwiki.embarcadero.com/RADStudio/Tokyo/en/XML_Documentation_Comments
ReplyDeletehttps://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/xmldoc/xml-documentation-comments
///
/// TByteSet is an alternative representation for .
///
If the type is from another unit you should add the unit name.
Use Documentation Insight and don't worry about xmldoc syntax.