Exemplo n.º 1
0
        private void TryParseChildren(Shape shape)
        {
            if (!IsLine(RectFileStrings.Children))
            {
                return;
            }
            int id;

            while (TryParseNextId(out id))
            {
                shape.AddChild(idToShapeMap[id]);
            }
        }