I have a dictionary with the value being a list that contains VariableList objects like so
public VariableList {
public string VariableName;
public bool VariableBoolean;
}
Dictionary<string, List<VariableList>> myVariableDictionary;
How would I assign this Dictionary with multiple keys including all the objects in the List in one statement without using Add?