From a1e1922e62419de75d2909dfae1ee7caa9ed487f Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 16 May 2020 22:08:40 -0400 Subject: Add xmldocs, and handle null bytes --- IRCStates/Extensions.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'IRCStates/Extensions.cs') diff --git a/IRCStates/Extensions.cs b/IRCStates/Extensions.cs index c807dbb..6cce3d4 100644 --- a/IRCStates/Extensions.cs +++ b/IRCStates/Extensions.cs @@ -5,6 +5,13 @@ namespace IRCStates { public static class Extensions { + /// + /// Update the dictionary with 's keys and values + /// + /// + /// + /// + /// public static void UpdateWith(this Dictionary dict, Dictionary other) { if (dict == null || other == null || !other.Any()) return; -- cgit 1.4.1