Example #1
0
		public SDRepository()
		{
            ProjectInfo = new SDProjectInfo();
			Namespaces = new List<SDNamespace>();
			Types = new List<SDType>();
            DocumentationLanguages = new List<string>();
            Articles = new Dictionary<string, List<SDArticle>>();
            Images = new List<string>();

            AddDocumentationLanguage("default");
		}
Example #2
0
        public SDRepository()
        {
            ProjectInfo            = new SDProjectInfo();
            Namespaces             = new Dictionary <string, SDNamespace>();
            Types                  = new Dictionary <string, SDType>();
            Methods                = new Dictionary <string, SDMethod>();
            Members                = new Dictionary <string, SDMember>();
            DocumentationLanguages = new List <string>();
            Articles               = new Dictionary <string, List <SDArticle> >();
            Images                 = new List <string>();

            AddDocumentationLanguage("default");
        }