Project.Kind 屬性
取得表示物件種類或類型的 GUID 字串。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property Kind As String
string Kind { get; }
property String^ Kind {
String^ get ();
}
abstract Kind : string with get
function get Kind () : String
屬性值
類型:String
表示物件類型的 GUID 字串。
傳回的值應該轉換成適當Guid或平台對等項目類型,才能進行比較使用原生 GUID 資料類型。如此可確保跨不同專案系統與用戶端的 GUID 字串格式會有所差異 (例如大小寫及使用大括號),因而不會在相等檢查中造成不正確的結果。
備註
內建的專案類型定義於PrjKind。 環境延伸模組必須提供唯一定義的型別字串。 這項資訊應可在每個工具或語言的型別程式庫或文件集。
範例
Sub KindExample2(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 msg As String
For Each item In proj.ProjectItems
msg &= " " & item.Name & _
" [Kind = " & item.Kind & "]" & vbCrLf
Next
MsgBox(proj.Name & " [Kind = " & proj.Kind & _
"] has the following project items:" & vbCrLf & vbCrLf & msg)
End Sub
public void KindExample2(DTE2 dte)
{
// Before running this example, open a project.
Project proj = dte.Solution.Projects.Item(1);
string msg = "";
foreach (ProjectItem item in proj.ProjectItems)
msg += " " + item.Name + " [Kind = " + item.Kind + "]\n";
MessageBox.Show(proj.Name + " [Kind = " + proj.Kind +
"] has the following project items:\n\n" + msg);
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。