Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/08/16 15:14:04 (8 years ago)
Author:
mkommend
Message:

#2557: Merged r13494, r13510 and r13676 into stable.

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Common/3.3/ObjectExtensions.cs

    r12009 r13879  
    6666    ///   * string, decimal, DateTime
    6767    ///   * Arrays of types not collected
     68    ///   * All types from System.Reflection.Emit
    6869    /// </summary>
    6970    private static bool ExcludeType(Type type) {
     
    7778             typeof(Delegate).IsAssignableFrom(type) ||
    7879             typeof(Pointer).IsAssignableFrom(type) ||
    79              type == typeof(System.Reflection.Emit.SignatureHelper) ||
     80             type.Namespace == "System.Reflection.Emit" ||
    8081             (type.HasElementType && ExcludeType(type.GetElementType()));
    8182    }
Note: See TracChangeset for help on using the changeset viewer.