ModelBuilder.NumericValueGenerator.GetMinimum C# (CSharp) Method

GetMinimum() protected method

Returns the minimum value for the specified generation target.
protected GetMinimum ( Type type, string referenceName, object context ) : object
type System.Type The type of value to generate.
referenceName string Identifies the possible parameter or property name the value is intended for.
context object The possible context object the value is being created for.
return object
        protected virtual object GetMinimum(Type type, string referenceName, object context)
        {
            return Generator.GetMin(type);
        }
    }