System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.ToUInt32 C# (CSharp) 메소드

ToUInt32() 개인적인 메소드

private ToUInt32 ( long value ) : UInt32
value long
리턴 UInt32
        private UInt32 ToUInt32(long value)
        {
            if (value < UInt32.MinValue || value > UInt32.MaxValue)
            {
                ThrowConversionException(value.ToString(NumberFormatInfo.CurrentInfo), "UInt32");
            }
            return (UInt32)value;
        }
XmlReaderDelegator.XmlReaderDelegator