本文整理匯總了C#中System.UInt32.GetUpperBound方法的典型用法代碼示例。如果您正苦於以下問題:C# UInt32.GetUpperBound方法的具體用法?C# UInt32.GetUpperBound怎麽用?C# UInt32.GetUpperBound使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.UInt32
的用法示例。
在下文中一共展示了UInt32.GetUpperBound方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: ContainerRadiusSearch
/// <summary>
/// Customized container radius search which returns a list of simobject ID's in the radius.
/// </summary>
/// <param name="p"> </param>
/// <param name="searchradius"> </param>
/// <param name="searchmask"> </param>
/// <param name="useclientcontainer"> </param>
/// <returns> </returns>
internal List<UInt32> ContainerRadiusSearch(Point3F p, double searchradius, UInt32 searchmask, bool useclientcontainer)
{
uint[] foundid = new UInt32[100];
List<uint> lid = new List<uint>();
Int32 countof = SafeNativeMethods.mContainerRadiusSearch(p.x, p.y, p.z, (float) searchradius, searchmask, useclientcontainer, foundid);
if (countof > 0)
for (int i = 0; i < foundid.GetUpperBound(0); i++)
lid.Add(foundid[i]);
return lid;
}