Google是你的好朋友,
轉型的話可能沒有現成的吧,
也許你需要自己轉.
List 就是 Collections 型態
using System.Collections.Generic;
List<KeyValuePair<string, int>> akvp = new List<KeyValuePair<string, int>>();
akvp.AddRange(vbcall(parameters.......));
foreach(var kvp in akvp){
Console.WriteLine(kvp.Key);
Console.WriteLine(kvp.Value);
}