本文整理汇总了C#中ProjectItems.OfType方法的典型用法代码示例。如果您正苦于以下问题:C# ProjectItems.OfType方法的具体用法?C# ProjectItems.OfType怎么用?C# ProjectItems.OfType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ProjectItems
的用法示例。
在下文中一共展示了ProjectItems.OfType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetFiles
private IEnumerable<string> GetFiles(ProjectItems projectItems)
{
if (projectItems == null)
{
return new string[0];
}
List<string> files = new List<string>();
foreach (var projectItem in projectItems.OfType<ProjectItem>())
{
for (short i = 0; i < projectItem.FileCount; i++)
{
files.Add(GetFileName(projectItem, i));
}
files.AddRange(GetFiles(projectItem.ProjectItems));
}
return files;
}
示例2: FindItemByPath
/// <summary>
/// Find a project item using a path-like address in the project folder hierarchy
/// </summary>
/// <param name="topItems">Top level items in the project</param>
/// <param name="itemPath">path to the required project item</param>
/// <returns>the project item</returns>
public static ProjectItem FindItemByPath(ProjectItems topItems, string itemPath)
{
ProjectItem item = topItems.OfType<ProjectItem>().FirstOrDefault(pi => pi.Name == itemPath.UpTo("/"));
if (!itemPath.Contains("/"))
return item;
else
return FindItemByPath(item.ProjectItems, itemPath.After("/"));
}