最佳答案
我有一个包含几个属性的类(如果有区别的话,所有属性都是字符串)。
我还有一个列表,其中包含该类的许多不同实例。
在为我的类创建一些单元测试时,我决定循环遍历列表中的每个对象,然后循环遍历该对象的每个属性..。
我以为这么做很简单。
foreach (Object obj in theList)
{
foreach (Property theProperties in obj)
{
do some stufff!!;
}
}
但是这没有用 I get this error...
"foreach statement cannot operate on variables of type 'Application.Object' because 'Application.Object' does not contain a public definition for 'GetEnumerator'"
有没有人知道一种不需要大量的如果和循环或者不需要进入任何太复杂的事情的方法?