public static bool IsNullValue <TKey, TValue>(this KeyValuePair <TKey, TValue>?source) { if (source.IsNullKey() || source.Value.Value == null) { return(true); } else { return(false); } }