Introduction
The CENTREL Solutions SVG Library is a free SVG data model for .NET which supports creating, modifying and saving SVG images to files or memory.
SvgImage svg = new SvgImage(800, 600);
SvgRectangle rectangle = svg.Elements.AddRectangle(new RectangleF(10, 10, 100, 20));
svg.SaveAs(@"D:\data\sample.svg");
It is used by our IT documentation tool XIA Configuration Server for generating visualizations.