|
|
|
|
|
|
TypeSerializationInfo info = item.typeInfo; |
|
|
|
if (remapper != null) |
|
|
|
info = DoTypeRemap(info, remapper); |
|
|
|
info.assemblyName = "Assembly-CSharp-Editor"; |
|
|
|
throw new ArgumentException(string.Format("Can not deserialize {0}, type {1} is invalid", info)); |
|
|
|
throw new ArgumentException(string.Format("Can not deserialize ({0}, {1}), type is invalid", info.assemblyName, info.fullName)); |
|
|
|
|
|
|
|
T instance; |
|
|
|
try |
|
|
|