ModelBuilder.NumericValueGenerator.GetMinimum C# (CSharp) 메소드

GetMinimum() 보호된 메소드

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.
리턴 object
        protected virtual object GetMinimum(Type type, string referenceName, object context)
        {
            return Generator.GetMin(type);
        }
    }