### API Breaking Change Combined `AsciiMessage` and `UnicodeMessage` into a single function that takes two arguments, `bool ascii` and `string lang`. Lang can be null (or anything) if ascii is true. - [X] Changes message packets - [X] Cleans up some code - [X] Uses benchmarks to determine if the spanwriter + copyfrom
14 lines
418 B
C#
14 lines
418 B
C#
using BenchmarkDotNet.Running;
|
|
|
|
namespace Benchmarks
|
|
{
|
|
public static class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
// var featureFlags = BenchmarkRunner.Run<BenchmarkFeatureFlags>();
|
|
// var packetConstruction = BenchmarkRunner.Run<BenchmarkPacketConstruction>();
|
|
var broadcast = BenchmarkRunner.Run<BenchmarkPacketBroadcast>();
|
|
}
|
|
}
|
|
}
|