Encog.Persist.EncogFileSection.EncogFileSection C# (CSharp) Method

EncogFileSection() public method

Construct the object.
public EncogFileSection ( String theSectionName, String theSubSectionName ) : System
theSectionName String The section name.
theSubSectionName String The sub section name.
return System
        public EncogFileSection(String theSectionName,
                                String theSubSectionName)
        {
            _lines = new List<String>();
            _sectionName = theSectionName;
            _subSectionName = theSubSectionName;
        }