You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The description fields for messages should result in C# comments in the generated code.
e.g. <sbe:message name="MyMessage" id="201" semanticType="V" description="This is my message type."> <field name="MarketDepth" id="264" type="uint8" description="0=Full Book, 1=Top of Book, n=Number of Levels."/> ...
should result in
/// <summary>
/// This is my message type
/// </summary>
public sealed partial class MyMessage
{
...
/// <summary>
/// 0=Full Book, 1=Top of Book, n=Number of Levels.
/// </summary>
public byte MarketDepth
{
...
}
}
This will aid in understanding the C# classes without having to refer back to the XML frequently.
The text was updated successfully, but these errors were encountered:
The description fields for messages should result in C# comments in the generated code.
e.g.
<sbe:message name="MyMessage" id="201" semanticType="V" description="This is my message type."> <field name="MarketDepth" id="264" type="uint8" description="0=Full Book, 1=Top of Book, n=Number of Levels."/> ...
should result in
This will aid in understanding the C# classes without having to refer back to the XML frequently.
The text was updated successfully, but these errors were encountered: