Is there a way to include examples for multiple langu开发者_JAVA技巧ages (C# and Visual Basic, for example) in XML documentation?
I'm using SandCastle to build MSDN-style documentation and would like to include usage examples for a few .NET languages.
My examples are coded e.g. like this:
/// <example>
/// <code source="..\FormControls\FileModelEdit\Form1.cs" region="published help using openDocumentFragment" lang="cs" />
/// </example>
I could presumably (although I don't) have several of these <code>
elements, each with a different lang
attribute value.
精彩评论