CodeClass2.Parts 属性
获取类的各部分。
命名空间: EnvDTE80
程序集: EnvDTE80(在 EnvDTE80.dll 中)
语法
声明
ReadOnly Property Parts As CodeElements
CodeElements Parts { get; }
property CodeElements^ Parts {
CodeElements^ get ();
}
abstract Parts : CodeElements
function get Parts () : CodeElements
属性值
类型:EnvDTE.CodeElements
返回与此类关联的分部类的列表。
备注
在进行某些类型的编辑之后,代码模型元素(如类、结构、函数、特性、委托等)的值可能是非确定性的,这意味着不能指望它们的值总是保持不变。有关更多信息,请参见 使用代码模型查找代码 (Visual Basic) 中的“代码模型元素的值可能会更改”一节。
示例
[Visual Basic]
Sub PartsExample()
' Before running this example, open a code document from a project
' and place the insertion point inside a class definition.
Try
' Retrieve the CodeClass at the insertion point.
Dim sel As TextSelection = _
CType(DTE.ActiveDocument.Selection, TextSelection)
Dim cls As CodeClass2 = _
CType(sel.ActivePoint.CodeElement( _
vsCMElement.vsCMElementClass), CodeClass2)
' Enumerate the CodeClass's parts.
Dim parts As String = ""
Dim elem As CodeElement2
For Each elem In cls.Parts
parts &= elem.FullName & vbCrLf
Next
MsgBox(cls.Name & " has the following parts:" & _
vbCrLf & vbCrLf & parts)
Catch ex As System.Exception
MsgBox(ex.ToString)
End Try
End Sub
[C#]
public void PartsExample(DTE2 dte)
{
// Before running this example, open a code document from a project
// and place the insertion point inside a class definition.
try
{
// Retrieve the CodeClass at the insertion point.
TextSelection sel =
(TextSelection)dte.ActiveDocument.Selection;
CodeClass2 cls =
(CodeClass)sel.ActivePoint.get_CodeElement2(
vsCMElement.vsCMElementClass);
// Enumerate the CodeClass's parts.
string parts = "";
foreach (CodeElement2 elem in cls.Parts)
{
parts += elem.FullName + Environment.NewLine;
}
MessageBox.Show(cls.Name + " has the following parts:" +
Environment.NewLine + Environment.NewLine + parts);
}
catch (System.Exception ex)
{
MessageBox.Show(Ex.Message);
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。