P Peter Larsen [] Oct 17, 2007 #1 Hi, How do i combine two 32 bit integers into one int64 in .net/C# ?? BR Peter
A Atmapuri Oct 17, 2007 #2 Hi! How do i combine two 32 bit integers into one int64 in .net/C# ?? Click to expand... Int64 a, b, Result; int a1, b1; b1 = 1; a1 = 2; Result = (((Int64)a1) << 32) + b1; Text = Result.ToString(); Regards! Atmapuri
Hi! How do i combine two 32 bit integers into one int64 in .net/C# ?? Click to expand... Int64 a, b, Result; int a1, b1; b1 = 1; a1 = 2; Result = (((Int64)a1) << 32) + b1; Text = Result.ToString(); Regards! Atmapuri