mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-29 06:48:41 +00:00
15 lines
374 B
C#
15 lines
374 B
C#
|
|
using Esiur.Data.Gvwie;
|
|
using Esiur.Tests.Gvwie;
|
|
using MessagePack;
|
|
|
|
var e = GroupInt32Codec.Encode(new int[] {-12000, 15000, -1, 32760 });
|
|
|
|
MessagePack.MessagePackSerializer.DefaultOptions = MessagePackSerializerOptions.Standard
|
|
.WithCompression(MessagePackCompression.None); // optional; remove if you want raw size
|
|
|
|
|
|
var ints = new IntArrayRunner();
|
|
ints.Run();
|
|
|