Ejemplo n.º 1
0
            internal static bool Overlaps(MapValue map, string[] updatedKeys)
            {
                foreach (string key in updatedKeys)
                {
                    if (map.ContainsKey(key))
                    {
                        return(true);
                    }
                }

                return(false);
            }