标签: xcode
XCode的新手,并试图了解这个IDE中的各种事物。所以我的问题是,我在下图中圈出的两个蓝色立方体是什么?
此截图来自XCode 7,如果重要的话。
答案 0 :(得分:4)
它是List<Contributor> authors = contributors .Select(x => new { Contributor = x, FilteredProducts = x.ProductsContributedTo.Where(y => y.Role == "Author").ToArray() }) .Where(x => x.FilteredProducts.Length != 0) .ToList(); 中的静态Section
List<Contributor> authors = contributors .Select(x => new { Contributor = x, FilteredProducts = x.ProductsContributedTo.Where(y => y.Role == "Author").ToArray() }) .Where(x => x.FilteredProducts.Length != 0) .ToList();
Section