Example #1
0
		public Config(
			Configs aggregateloopback_ref_in, 
			string name_in
		) : base (
			aggregateloopback_ref_in
		) {
			//#region ClaSSe...
			name_ = name_in;
			value_ = string.Empty;
			//#endregion
		}
Example #2
0
		public DocMetadata(
		) : base (
			null
		) {
			//#region ClaSSe...
			documentationname_ = string.Empty;
			projecturl_ = string.Empty;
			copyrighttext_ = string.Empty;
			feedbackemailaddress_ = string.Empty;
			version_ = string.Empty;
			date_ = string.Empty;
			//---
			configs_ = new Configs(this/*, this*/);
			subjects_ = new Subjects(this/*, this*/);
			authors_ = new Authors(this/*, this*/);
			links_ = new Links(this/*, this*/);
			faqsubjects_ = new FAQSubjects(this/*, this*/);
			codesamples_ = new CodeSamples(this/*, this*/);
			//#endregion
		}