Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 2513a28

Browse files
committed
Change delimiter to use space
1 parent 5f3467f commit 2513a28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Text/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ public static byte[] ToAsciiBytes(this string value)
894894
return PclExport.Instance.GetAsciiBytes(value);
895895
}
896896

897-
public static Dictionary<string,string> ParseKeyValueText(this string text, string delimiter=":")
897+
public static Dictionary<string,string> ParseKeyValueText(this string text, string delimiter=" ")
898898
{
899899
var to = new Dictionary<string, string>();
900900
if (text == null) return to;

0 commit comments

Comments
 (0)