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

            CorePluginRegistry.RegisterXmlCodeDoc(xmlDoc);
        }
		public static void LoadXmlCodeDoc(string file)
		{
			XmlCodeDoc xmlDoc = new XmlCodeDoc(file);
			CorePluginRegistry.RegisterXmlCodeDoc(xmlDoc);
		}