- Timestamp:
- 06/26/12 15:41:16 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Common/3.3/ObjectExtensions.cs
r8108 r8128 31 31 namespace HeuristicLab.Common { 32 32 public static class ObjectExtensions { 33 public static IEnumerable<T> ToEnumerable<T>(this T obj) { 34 yield return obj; 35 } 36 33 37 public static IEnumerable<object> GetObjectGraphObjects(this object obj, HashSet<string> excludedMembers = null, bool excludeStaticMembers = false) { 34 38 if (obj == null) return Enumerable.Empty<object>();
Note: See TracChangeset
for help on using the changeset viewer.