Pārlūkot izejas kodu

Reduce the performance cost of Memory<T>.getSpan()

release/3.x.x
xljiulang pirms 4 gadiem
vecāks
revīzija
9ed80daf83
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. +2
    -2
      Source/MQTTnet.AspnetCore/Extensions/ReaderExtensions.cs

+ 2
- 2
Source/MQTTnet.AspnetCore/Extensions/ReaderExtensions.cs Parādīt failu

@@ -80,7 +80,7 @@ namespace MQTTnet.AspNetCore
headerLength = 0;
bodyLength = 0;
var temp = input.Slice(0, Math.Min(5, input.Length)).GetMemory();
var temp = input.Slice(0, Math.Min(5, input.Length)).GetMemory().Span;

do
{
@@ -88,7 +88,7 @@ namespace MQTTnet.AspNetCore
{
return false;
}
encodedByte = temp.Span[index];
encodedByte = temp[index];
index++;

value += (byte)(encodedByte & 127) * multiplier;


Notiek ielāde…
Atcelt
Saglabāt