From e2d0fb8a0305514f83cbe7d97baf1812258b64c1 Mon Sep 17 00:00:00 2001 From: Timerix22 Date: Tue, 26 Oct 2021 18:43:42 +0300 Subject: [PATCH] Add(KeyValuePair) --- Dtsod/DtsodV22.cs | 2 ++ 1 file changed, 2 insertions(+) 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); } }