Encog.App.Analyst.Script.Prop.ScriptProperties.GetPropertyCSVFormat C# (CSharp) Méthode

GetPropertyCSVFormat() public méthode

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