我正在尝试编写一个代码,其中 EntityCollection 是方法的参数,但我不知道什么是正确的编码
有人可以帮我解决这个问题吗?
这是示例代码
//by the way, this is a wrong coding, I am just showing you, what is the thing that I want to do...
private void sampleMethod(EntityCollection a)
{
if (a.ToList().Count == 0)
{
//body
}
}
当我调用它时,这就是它的样子
sampleMethod(employee.EducationalBackground);