本文整理汇总了C#中IAdapter.GetProduct2方法的典型用法代码示例。如果您正苦于以下问题:C# IAdapter.GetProduct2方法的具体用法?C# IAdapter.GetProduct2怎么用?C# IAdapter.GetProduct2使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IAdapter
的用法示例。
在下文中一共展示了IAdapter.GetProduct2方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestGetProduct2
private void TestGetProduct2(IAdapter adapter, int count)
{
int[] ids = new int[]
{
752, 928, 756, 858, 711, 788, 743, 990, 948, 769, 979, 906, 833,
741, 790, 776, 919, 822, 819, 976, 718, 913, 887, 751, 911, 739,
765, 836, 873, 967,
};
adapter.Prepare();
Stopwatch stp = new Stopwatch();
stp.Start();
for (int i = 0; i < count; i++)
{
adapter.GetProduct2(ids[i % ids.Length]);
}
stp.Stop();
Console.WriteLine("{0,-30} - {1,6} ms {2,6} us",
adapter.Name,
stp.ElapsedMilliseconds,
Math.Round(1000.0 * stp.Elapsed.TotalMilliseconds / count, 4));
adapter.Relase();
}