ProjectItem.FileCount 属性
获取与 ProjectItem 关联的文件数。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property FileCount As Short
short FileCount { get; }
property short FileCount {
short get ();
}
abstract FileCount : int16
function get FileCount () : short
属性值
类型:System.Int16
一个短整型值,它指示与 ProjectItem 关联的文件数。
备注
大多数项目项仅由一个文件构成,但某些项目项可以有多个文件,如 Visual Basic 中的窗体,它们被保存为 .frm(文本)和 .frx(二进制)两种文件。
示例
Sub FileCountExample(ByVal dte As DTE2)
' Before running this example, open a project.
Dim proj As Project = dte.Solution.Projects.Item(1)
Dim item As ProjectItem
Dim items As String
For Each item In proj.ProjectItems
items &= " " & item.Name & " (FileCount = " & _
item.FileCount & ")" & vbCrLf
Next
MsgBox(proj.Name & " has the following project items:" & _
vbCrLf & vbCrLf & items)
End Sub
public void FileCountExample(DTE2 dte)
{
// Before running this example, open a project.
Project proj = dte.Solution.Projects.Item(1);
string items = "";
foreach (ProjectItem item in proj.ProjectItems)
items += " " + item.Name + " (FileCount = " +
item.FileCount + ")\n";
MessageBox.Show(proj.Name +
" has the following project items:\n\n" + items);
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。