mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-04-04 12:28:21 +00:00
12 lines
278 B
C#
12 lines
278 B
C#
|
|
using Esiur.Tests.Gvwie;
|
|
using MessagePack;
|
|
|
|
MessagePack.MessagePackSerializer.DefaultOptions = MessagePackSerializerOptions.Standard
|
|
.WithCompression(MessagePackCompression.None); // optional; remove if you want raw size
|
|
|
|
|
|
var ints = new IntArrayRunner();
|
|
ints.Run();
|
|
|