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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。