代码:
public class ClassA
{
public decimal foo
}
public class ClassB
{
public List<ClassA> Alist
}
在 ClassB 中,我像这样向 Alist 填充值。
foreach (junk in trash)
{
Alist.add(new ClassA()
{
foo = junk.Bar
});
// if (Alist.foo == whatever)
// but no access to Alist.foo here
}
在 for each 循环中,我试图对 foo 运行一个 if 语句。所以像 if (Alist.foo == whatever)
我不能这样做的事情,它不能让我访问Alist.foo
. 任何想法如何做到这一点。