You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: benchmarks/PolylineAlgorithm.Benchmarks/PolylineDecoderBenchmark.cs
+8-8
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,12 @@ public class PolylineDecoderBenchmark {
31
31
/// <summary>
32
32
/// Gets the character array representing the encoded polyline.
33
33
/// </summary>
34
-
publicbyte[]ByteArray{get;privateset;}
34
+
publicchar[]CharArray{get;privateset;}
35
35
36
36
/// <summary>
37
37
/// Gets the read-only memory representing the encoded polyline.
38
38
/// </summary>
39
-
publicReadOnlyMemory<byte>Memory{get;privateset;}
39
+
publicReadOnlyMemory<char>Memory{get;privateset;}
40
40
41
41
#pragma warning restore CS8618// Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
42
42
@@ -51,8 +51,8 @@ public class PolylineDecoderBenchmark {
0 commit comments