|
Lines 855-860
Link Here
|
| 855 |
else if (name == "System.RuntimeType[]") |
855 |
else if (name == "System.RuntimeType[]") |
| 856 |
return typeof (MonoType[]); |
856 |
return typeof (MonoType[]); |
| 857 |
Type t = Type.GetType (name); |
857 |
Type t = Type.GetType (name); |
|
|
858 |
if (t != null && BinaryCommon.IsPrimitive(t)) |
| 859 |
t = typeof(Nullable); |
| 858 |
if (t != null) |
860 |
if (t != null) |
| 859 |
return t; |
861 |
return t; |
| 860 |
|
862 |
|