Changeset 2938 for trunk/sources
- Timestamp:
- 03/05/10 13:56:57 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm/3.2/TypeExtension.cs
r2790 r2938 32 32 return true; 33 33 34 if ( recursiveCheckGenericTypes(type, other))34 if (RecursiveCheckGenericTypes(type, other)) 35 35 return true; 36 36 … … 44 44 } 45 45 46 private static bool recursiveCheckGenericTypes(Type type, Type other) {46 private static bool RecursiveCheckGenericTypes(Type type, Type other) { 47 47 if (type.CheckGenericTypes(other)) 48 48 return true; … … 51 51 return false; 52 52 53 return recursiveCheckGenericTypes(type.BaseType, other);53 return RecursiveCheckGenericTypes(type.BaseType, other); 54 54 } 55 55
Note: See TracChangeset
for help on using the changeset viewer.