Encog.ML.BasicML.GetPropertyString C# (CSharp) Method

GetPropertyString() public method

Get the specified property as a string.
public GetPropertyString ( String name ) : String
name String The name of the property.
return String
        public String GetPropertyString(String name)
        {
            if (_properties.ContainsKey(name))
            {
                return (_properties[name]);
            }
            return null;
        }