Expressions.Item 方法
返回 Expressions 集合中的一个 Expression 对象。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
Function Item ( _
index As Object _
) As Expression
Expression Item(
Object index
)
Expression^ Item(
[InAttribute] Object^ index
)
abstract Item :
index:Object -> Expression
function Item(
index : Object
) : Expression
参数
- index
类型:System.Object
必选。要返回的 Expression 对象的索引。
返回值
类型:EnvDTE.Expression
Expression 对象。
备注
如果集合找不到对应于索引值的对象,则 Item 方法引发 System.ArgumentException 异常。
示例
下面的示例演示如何使用 Item 方法。
若要测试此方法,请执行下列操作:
目标应用程序必须包含类 A。 函数 Main 必须创建类 A 的一个实例“a”。
在创建了类 A 的一个实例并初始化其成员变量后,在函数 Main 中设置一个断点。
以调试模式运行目标应用程序。
当此应用程序停在该断点处时,运行外接程序。
public static void Item(DTE dte)
{
// Setup debug Output window.
Window w = (Window)dte.Windows.Item(EnvDTE.Constants.vsWindowKindOutput);
w.Visible = true;
OutputWindow ow = (OutputWindow)w.Object;
OutputWindowPane owp = ow.OutputWindowPanes.Add("Item Method Test");
owp.Activate();
EnvDTE.Expression exp = dte.Debugger.GetExpression("a", true, 1);
EnvDTE.Expressions exps = exp.DataMembers;
owp.OutputString("\nExpression count: " + exps.Count);
owp.OutputString("\nEdition of the environment: " + exps.DTE.Edition);
owp.OutputString("\nThe name of the current program: " +
exps.Parent.CurrentProgram.Name);
owp.OutputString("\nSecond expression: " + exps.Item(2).Name);
}
Shared Sub Item(ByRef dte As EnvDTE.DTE)
Dim exp As EnvDTE.Expression = dte.Debugger.GetExpression("a", True, 1)
Dim exps As EnvDTE.Expressions = exp.DataMembers
Dim str As String = vbCrLf
str = "Expression count: " + exps.Count.ToString()
str += vbCrLf + "Edition of the environment: " + exps.DTE.Edition
str += vbCrLf + "The name of the current program: " + _
exps.Parent.CurrentProgram.Name
str += vbCrLf + "Second expression: " + exps.Item(2).Name
MessageBox.Show(str, "Expression Test - Expressions Properties")
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。