TrackableData.TrackableResolver.IsTrackableDictionary C# (CSharp) Method

IsTrackableDictionary() public static method

public static IsTrackableDictionary ( Type type ) : bool
type System.Type
return bool
        public static bool IsTrackableDictionary(Type type)
        {
            return type.IsGenericType &&
                   type.GetGenericTypeDefinition() == typeof(TrackableDictionary<,>);
        }