System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.ToShort C# (CSharp) Method

ToShort() private method

private ToShort ( int value ) : short
value int
return short
        private short ToShort(int value)
        {
            if (value < short.MinValue || value > short.MaxValue)
            {
                ThrowConversionException(value.ToString(NumberFormatInfo.CurrentInfo), "Int16");
            }
            return (short)value;
        }
XmlReaderDelegator.XmlReaderDelegator