ProjectItem.FileCount 속성
ProjectItem과 연결된 파일 수를 가져옵니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
ReadOnly Property FileCount As Short
Get
short FileCount { get; }
property short FileCount {
short get ();
}
abstract FileCount : int16
function get FileCount () : short
속성 값
형식: System.Int16
ProjectItem 과 연결된 파일 수를 나타내는 정수(short)입니다.
설명
대부분의 프로젝트 항목은 하나의 파일로 구성되지만 일부 항목은 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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.