public static bool TryGetOrCreate(object x, object y, out ICopyer comparer) { if (Is.Type<IDictionary>(x, y)) { comparer = Default; return true; } comparer = null; return false; }
public static bool TryGetOrCreate(object x, object y, out ICopyer comparer) { if (x is IList && y is IList) { comparer = Default; return true; } comparer = null; return false; }