From 8550bbc3a3e3777635ffc6efcaa5affb9d4f7d1d Mon Sep 17 00:00:00 2001 From: Chris Wheeler Date: Sat, 22 Jun 2019 19:46:52 -0400 Subject: [PATCH] quick comment --- Capnp.Net.Runtime/Framing.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Capnp.Net.Runtime/Framing.cs b/Capnp.Net.Runtime/Framing.cs index 5a0d858..188f2e7 100644 --- a/Capnp.Net.Runtime/Framing.cs +++ b/Capnp.Net.Runtime/Framing.cs @@ -66,7 +66,8 @@ namespace Capnp { throw new InvalidDataException("Expected more bytes according to framing header"); } - + + // Fastest way to do this without /unsafe for (int j = 0; j < buffers[i].Length; j++) { var value = BitConverter.ToUInt64(tmpBuffer, j*8);