1
- using System . Collections . Generic ;
1
+ using System ;
2
+ using System . Collections . Generic ;
2
3
using System . Reflection ;
3
4
4
5
namespace ServiceStack . Text
@@ -8,16 +9,22 @@ public static class TypeConstants
8
9
public static readonly string [ ] EmptyStringArray = new string [ 0 ] ;
9
10
public static readonly long [ ] EmptyLongArray = new long [ 0 ] ;
10
11
public static readonly int [ ] EmptyIntArray = new int [ 0 ] ;
12
+ public static readonly bool [ ] EmptyBoolArray = new bool [ 0 ] ;
11
13
public static readonly byte [ ] EmptyByteArray = new byte [ 0 ] ;
12
14
public static readonly object [ ] EmptyObjectArray = new object [ 0 ] ;
15
+ public static readonly Type [ ] EmptyTypeArray = new Type [ 0 ] ;
13
16
public static readonly FieldInfo [ ] EmptyFieldInfoArray = new FieldInfo [ 0 ] ;
14
17
public static readonly PropertyInfo [ ] EmptyPropertyInfoArray = new PropertyInfo [ 0 ] ;
15
18
19
+ public static readonly byte [ ] [ ] EmptyByteArrayArray = new byte [ 0 ] [ ] ;
20
+
16
21
public static readonly List < string > EmptyStringList = new List < string > ( 0 ) ;
17
22
public static readonly List < long > EmptyLongList = new List < long > ( 0 ) ;
18
23
public static readonly List < int > EmptyIntList = new List < int > ( 0 ) ;
24
+ public static readonly List < bool > EmptyBoolList = new List < bool > ( 0 ) ;
19
25
public static readonly List < byte > EmptyByteList = new List < byte > ( 0 ) ;
20
26
public static readonly List < object > EmptyObjectList = new List < object > ( 0 ) ;
27
+ public static readonly List < Type > EmptyTypeList = new List < Type > ( 0 ) ;
21
28
public static readonly List < FieldInfo > EmptyFieldInfoList = new List < FieldInfo > ( 0 ) ;
22
29
public static readonly List < PropertyInfo > EmptyPropertyInfoList = new List < PropertyInfo > ( 0 ) ;
23
30
}
0 commit comments