标签: visual-studio visual-studio-2013 ienumerable
在下图中,testScope是IEnumerable。我试图通过扩展结果视图来查看其内容,根据Visual Studio将枚举IEnumerable,但相反,我显然得到一个带有“未找到入口点”的单项。
testScope
IEnumerable
但是,前一行代码(在图片中不可见)是var thing = testScope.ToList();并且运行正常(它枚举所有成员),这意味着GetEnumerator不会抛出任何异常。
var thing = testScope.ToList();
GetEnumerator