NuGet.TypeHelper.GetDictionaryType C# (CSharp) Method

GetDictionaryType() public static method

public static GetDictionaryType ( Type type ) : Type
type System.Type
return System.Type
        public static Type GetDictionaryType(Type type)
        {
            return GetInterfaceType(type, typeof(IDictionary<,>));
        }