Beispiel #1
0
        public void Import(Graph other)
        {
            ArrayTools.AddRange(ref generators, other.generators);

            foreach (var kvp in other.links)
            {
                links.Add(kvp.Key, kvp.Value);
            }

            ArrayTools.AddRange(ref groups, other.groups);
        }