本文整理匯總了C#中System.UInt64.toNumber方法的典型用法代碼示例。如果您正苦於以下問題:C# UInt64.toNumber方法的具體用法?C# UInt64.toNumber怎麽用?C# UInt64.toNumber使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.UInt64
的用法示例。
在下文中一共展示了UInt64.toNumber方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ReadVarUhLong
public double ReadVarUhLong()
{
int _loc_3 = 0;
UInt64 result = new UInt64();
int _loc_4 = 0;
while (true)
{
_loc_3 = ReadByte();
if (_loc_4 == 28)
{
break;
}
else if (_loc_3 >= 128)
{
result.low = result.low | Convert.ToUInt32(_loc_3 & 127) << Convert.ToInt32(_loc_4);
}
else
{
result.low = result.low | Convert.ToUInt32(_loc_3) << Convert.ToInt32(_loc_4);
return result.toNumber();
}
_loc_4 = _loc_4 + 7;
}
if (_loc_3 >= 128)
{
_loc_3 = _loc_3 & 127;
result.low = result.low | Convert.ToUInt32(_loc_3) << Convert.ToInt32(_loc_4);
result.high = Convert.ToUInt32(_loc_3) >> 4;
}
else
{
result.low = result.low | Convert.ToUInt32(_loc_3) << Convert.ToInt32(_loc_4);
result.high = Convert.ToUInt32(_loc_3) >> 4;
return result.toNumber();
}
_loc_4 = 3;
while (true)
{
_loc_3 = ReadByte();
if (_loc_4 < 32)
{
if (_loc_3 >= 128)
{
result.high = result.high | Convert.ToUInt32(_loc_3 & 127) << Convert.ToInt32(_loc_4);
}
else
{
result.high = result.high | Convert.ToUInt32(_loc_3) << Convert.ToInt32(_loc_4);
break;
}
}
_loc_4 = _loc_4 + 7;
}
return result.toNumber();
}