Box.V2.Managers.BoxSearchManager.BuildSizeRangeField C# (CSharp) Method

BuildSizeRangeField() private method

private BuildSizeRangeField ( int lowerBoundBytes, int upperBoundBytes ) : string
lowerBoundBytes int
upperBoundBytes int
return string
        private string BuildSizeRangeField(int? lowerBoundBytes, int? upperBoundBytes)
        {
            var lowerBoundString = lowerBoundBytes.HasValue ? lowerBoundBytes.Value.ToString() : String.Empty;
            var upperBoundString = upperBoundBytes.HasValue ? upperBoundBytes.Value.ToString() : String.Empty;

            return BuildRangeString(lowerBoundString, upperBoundString);
        }