I know you can use the example and code tags but how does one note different languages (VB.Net, C#, C++)?
Thanks, Paul
I know you can use the example and code tags but how does one note different languages (VB.Net, C#, C++)?
Thanks, Paul
Use the lang attribute - e.g.
<example>
Description of the example.
<code lang="cs">string myString = "";</code>
<code lang="vb">Dim MyString As String</code>
</example>