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);
        }