upm_guru_kcp/Runtime/csharp-kcp/reedsolomon_csharp/Program.cs

17 lines
271 B
C#

using System;
using System.Runtime.InteropServices;
namespace fec
{
class Program
{
static void Main(string[] args)
{
new ReedSolomonBenchmark().run();
// new ReedSolomonTest().testBigEncodeDecode();
}
}
}