AsterixDisplayAnalyser.BitExtractor.JoinTwoUInt32 C# (CSharp) Метод

JoinTwoUInt32() публичный Метод

public JoinTwoUInt32 ( UInt32 FirstPart, UInt32 SecondPart ) : System.UInt64
FirstPart System.UInt32
SecondPart System.UInt32
Результат System.UInt64
        public UInt64 JoinTwoUInt32(UInt32 FirstPart, UInt32 SecondPart)
        {
            // Convert both numbers into 32 char strings, join them together into 62 char string and then convert into UInt64
            return Convert.ToUInt64((GetTo32Char(Convert.ToString(FirstPart, 2)) + GetTo32Char(Convert.ToString(SecondPart, 2))), 2);
        }