Exemplo n.º 1
0
 public void AppendDoc(XmlCodeDoc other)
 {
     foreach (var pair in other.entries)
     {
         this.AddEntry(new Entry(pair.Value));
     }
 }
Exemplo n.º 2
0
 public static void LoadXmlCodeDoc(string file)
 {
     XmlCodeDoc xmlDoc = new XmlCodeDoc(file);
     docDatabase.AppendDoc(xmlDoc);
 }
Exemplo n.º 3
0
		public void AppendDoc(XmlCodeDoc other)
		{
			foreach (var pair in other.entries)
				this.AddEntry(new Entry(pair.Value));
		}
Exemplo n.º 4
0
        public static void LoadXmlCodeDoc(string file)
        {
            XmlCodeDoc xmlDoc = new XmlCodeDoc(file);

            docDatabase.AppendDoc(xmlDoc);
        }
Exemplo n.º 5
0
        public static void LoadXmlCodeDoc(string file)
        {
            XmlCodeDoc xmlDoc = new XmlCodeDoc(file);

            CorePluginRegistry.RegisterXmlCodeDoc(xmlDoc);
        }
Exemplo n.º 6
0
 public static void LoadXmlCodeDoc(string file)
 {
     XmlCodeDoc xmlDoc = new XmlCodeDoc(file);
     CorePluginRegistry.RegisterXmlCodeDoc(xmlDoc);
 }