src/Microsoft.Azure.WebJobs.Host/Converters/Int16ToStringConverter.cs (12 lines of code) (raw):

// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System.Globalization; namespace Microsoft.Azure.WebJobs.Host.Converters { internal class Int16ToStringConverter : IConverter<short, string> { public string Convert(short input) { return input.ToString(CultureInfo.InvariantCulture); } } }