I’m using Ignite IBinarizable raw serialization in Ignite v2.6 with C# client.
I notice there is no support for unsigned short, int and long integer types (both single values and arrays). I also noticed that Decimal, DateTime and Guid read/write methods only support nullable values. Currently I have code that writes a ushort value into an into to preserve its value range. Similarly I have non-nullable Guid values and need to do the nullable dance to on the read side to transform them back to non-nullable. Is there a particular reason these are not supported? Thanks, Raymond.