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
@@ -616,7 +608,7 @@ public static Slice FromStringAnsi([CanBeNull] string text)
616
608
{
617
609
return text ==null?Slice.Nil
618
610
:text.Length==0?Slice.Empty
619
-
:newSlice(DefaultEncoding.GetBytes(text));
611
+
:newSlice(Encoding.Default.GetBytes(text));
620
612
}
621
613
622
614
/// <summary>Create a slice from an ASCII string, where all the characters map directory into bytes (0..255). The string will be checked before being encoded.</summary>
@@ -1426,7 +1418,7 @@ public string ToStringAnsi()
0 commit comments