Return a contiguous Location from min to max.

Namespace:  BioSharp.Core.Bio.Symbol
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
public static ILocation MakeLocation(
	int min,
	int max
)

Parameters

min
Type: System..::.Int32
the location min value
max
Type: System..::.Int32
the location max value

Return Value

a new location from min to max

Remarks

If min == max then a PointLocation will be made, otherwise, a RangeLocation will be returned.

See Also