If I create a group like:
QuickFix.Group group = new QuickFix.Group(3, 50)
it's working perfectly. If I create group like
QuickFix.Group group = new QuickFix.Group(73, 50)
// or
QuickFix.Group group = new QuickFix.Group(555, 600)
I am getting an exception like below:
Attempted to read or write protected memory.
This is often an indication that other memory is corrupt.
at FIX.FieldMap.{dtor}(FieldMap* )
at FIX.Message.{dtor}(Message* )
at FIX.Message.__vecDelDtor(Message* , UInt32 )
at QuickFix.Message.Finalize()
What am I doing wrong?