AdvancedLauncher.SDK.Management.FileSystemManager.ConvertToUint32 C# (CSharp) 메소드

ConvertToUint32() 개인적인 메소드

Convert long to uint
private ConvertToUint32 ( long l ) : uint
l long Long value
리턴 uint
        private uint ConvertToUint32(long l)
        {
            while (l > UInt32.MaxValue) {
                l -= UInt32.MaxValue;
            }
            return Convert.ToUInt32(l);
        }