Add(KeyValuePair)

This commit is contained in:
Timerix22 2021-10-26 18:43:42 +03:00
parent 9656918a40
commit e2d0fb8a03

View File

@ -490,5 +490,7 @@ namespace DTLib.Dtsod
Add(pair.Key, pair.Value); Add(pair.Key, pair.Value);
return this; return this;
} }
public void Add(KeyValuePair<string, ValueStruct> a) => Add(a.Key, a.Value);
} }
} }