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

Commit f233096

Browse files
committed
Add EmptyStringDictionary
1 parent ba00c29 commit f233096

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ServiceStack.Text/TypeConstants.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ public static class TypeConstants
1919

2020
public static readonly byte[][] EmptyByteArrayArray = new byte[0][];
2121

22+
public static readonly Dictionary<string, string> EmptyStringDictionary = new Dictionary<string, string>(0);
23+
2224
public static readonly List<string> EmptyStringList = new List<string>(0);
2325
public static readonly List<long> EmptyLongList = new List<long>(0);
2426
public static readonly List<int> EmptyIntList = new List<int>(0);

0 commit comments

Comments
 (0)