View | Details | Raw Unified | Return to bug 552891
Collapse All | Expand All

(-)ObjectReader.cs (+2 lines)
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

Return to bug 552891