public override IGH_Goo Duplicate()
        {
            // not sure it is ok!!!
            MaterialType Copy = new SectionType(this.Value);

            return(Copy);
        }
        // Constructor with Initial Value

        public SectionType(SectionType Section)
        {
            this.Value = Section;
        }