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

GetPropertyBoolean() public method

Get a property as a boolean.
public GetPropertyBoolean ( String name ) : bool
name String The property name.
return bool
        public bool GetPropertyBoolean(String name)
        {
            if (!_data.ContainsKey(name))
            {
                return false;
            }
            return _data[name].ToLower().StartsWith("t");
        }