Summary
Adds the specified dictionary to the provided dictionary.
Syntax
public static TBuilder With<TBuilder, TKey, TField>(this TBuilder builder, ref Dictionary<TKey, TField> dictionary, IDictionary<TKey, TField> keyValuePair)
where TKey : notnull
Type Parameters
Name |
Description |
TBuilder |
The type of the builder. |
TKey |
The type of the key. |
TField |
The type of the field. |
Parameters
Name |
Type |
Description |
builder |
TBuilder |
This builder. |
dictionary |
Dictionary<TKey, TField> |
The dictionary. |
keyValuePair |
IDictionary<TKey, TField> |
The key value pair. |
Return Value
Type |
Description |
TBuilder |
The builder. |