我有一个我创建的测试类,我希望能够创建它的多个实例。然后我想使用 foreach 遍历每个实例。我看过几个论坛,IEnumerate
但作为一个非常新的人,他们让我感到困惑。谁能给我一个新的例子。
我的课:
using System;
using System.Collections;
using System.Linq;
using System.Text
namespace Test3
{
class Class1
{
public string Name { get; set; }
public string Address { get; set; }
public string City { get; set; }
public string State { get; set; }
public string Zip { get; set; }
}
}
谢谢