English 中文(简体)
Con与itter相分离的itter子用户标签,以对应的筛选名称
原标题:Convert comma separated twitter user-ids to corresponding screen names

我正在拟定一份特工申请。 推特·普朗西斯·安特森将在 com马分离时将5 000名用户母送回。 我需要把屏幕名称、跟踪仪表和从用户浏览器中抽取。 但该软件将适时把100个用户细节拉开。

任何人都能够帮助我找到最高效/最不建议的办法来打破 com马分离的圈子,把100个用户带走,并了解用户的细节?

最佳回答

在这方面,只有一次发生分裂。

   string ids = "YOUR IDs";
   int limit = 100;
   List<string[]> store = new List<string[]>();
   var split = ids.Split( , );
   int counter = 0;
   while (true) {
       var batch = string.Join(",", split.Skip(counter++ * limit).Take(limit));
       if (string.IsNullOrEmpty(batch)) break;
       //Make your call here
   }
问题回答

我将使用结果。 如果该校服能够快速运行,你就应当人工将体力推到头100 com。 这将稍快些,但并非只是表面上。 在第一种情况下,你仍然能够处理5 000个ma马分离分子,在任何现代机器上的第二分之一。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签