Changeset 8647
- Timestamp:
- 09/14/12 09:28:03 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Persistence/3.3/Auxiliary/TypeLoader.cs
r8641 r8647 47 47 try { 48 48 type = Type.GetType(typeNameString, true); 49 #region Mono Compatibility 50 // mono: workaround until Mono bug #580 (http://bugzilla.xamarin.com/show_bug.cgi?id=580) is fixed 51 if (type.AssemblyQualifiedName != typeNameString) 52 throw new TypeLoadException( 53 String.Format( 54 @"Could not load requested type ""{0}"", loaded ""{1}"" instead.", 55 typeNameString, type.AssemblyQualifiedName)); 56 #endregion 57 } 49 } 58 50 catch (Exception) { 59 51 Logger.Warn(String.Format(
Note: See TracChangeset
for help on using the changeset viewer.