using System.Xml;
using XmlDocumentRegistry;

namespace RegistryXml
{
class Program
{
static void Main(string[] args)
{
XmlDocument xml = new XmlDocument();
xml.Load(@"C:\my regitry.xml");
xml.ExportToRegistry();
}
}
}