diff --git a/Dtsod/DtsodV22.cs b/Dtsod/DtsodV22.cs index f5124a0..6900154 100644 --- a/Dtsod/DtsodV22.cs +++ b/Dtsod/DtsodV22.cs @@ -490,5 +490,7 @@ namespace DTLib.Dtsod Add(pair.Key, pair.Value); return this; } + + public void Add(KeyValuePair a) => Add(a.Key, a.Value); } }