从MicroSoft Visual Basic Collection获取数据

时间:2014-12-10 16:34:06

标签: c# collections

的Bonjour,

我尝试了这个小测试

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.VisualBasic;

namespace testCollection
{
 class Program
 {
    static void Main(string[] args)
    {
        Microsoft.VisualBasic.Collection persons = new Collection() {
            new Person{Age=12, Name="Alain", Profession="Prof"},
            new Person{Age=31, Name="Kati", Profession="Spor"},
            new Person{Age=23, Name="Mari", Profession="Bak"},
        };
        foreach (Person item in persons)
        {
            Console.WriteLine("Name:{0}, *** Age:{1}, *** Profession:{2}",item.Name, item.Age,    item.Profession);
        }
        Console.ReadKey();
    }
 }
}

并且它有效,我试图在调试的帮助下将它与我的数据收集进行比较: 在这个项目中: enter image description here

在主项目中: enter image description here

我可以看到第一个中的Value类型是Person,第二个是Count,我不知道如何从这个集合中检索数据,而且我还有错误消息: enter image description here

由于

0 个答案:

没有答案