public void Add(SolutionFileComment Comment)
 {
     this.History.Add(Comment);
 }
        public static void Write(this SolutionFile File, SolutionProjectLanguage Language, SolutionBuilder Context, SolutionFileComment[] Comments)
        {
            if (Comments != null)
            {
                File.Region(
                    delegate
                    {
                        foreach (var item in Comments)
                        {
                            item.WriteTo(File, Language, Context);

                        }
                    }
                );
            }
        }
		public void Add(SolutionFileComment Comment)
		{
			this.History.Add(Comment);
		}