Encog.App.Analyst.Script.Prop.ScriptProperties.GetPropertyCSVFormat C# (CSharp) Method

GetPropertyCSVFormat() public method

Get a property as a format.
public GetPropertyCSVFormat ( String name ) : CSVFormat
name String The property name.
return CSVFormat
        public CSVFormat GetPropertyCSVFormat(String name)
        {
            String v = _data[name];
            AnalystFileFormat code = ConvertStringConst
                .String2AnalystFileFormat(v);
            return ConvertStringConst.ConvertToCSVFormat(code);
        }