Threads.Item 方法

返回 Threads 集合中的一个 Thread 对象。

命名空间:  EnvDTE
程序集:  EnvDTE(在 EnvDTE.dll 中)

语法

声明
Function Item ( _
    index As Object _
) As Thread
Thread Item(
    Object index
)
Thread^ Item(
    [InAttribute] Object^ index
)
abstract Item : 
        index:Object -> Thread 
function Item(
    index : Object
) : Thread

参数

返回值

类型:EnvDTE.Thread
Thread 对象。

备注

如果集合找不到对应于索引值的对象,则 Item 方法引发 System.ArgumentException 异常。

示例

下面的示例演示如何使用 Item 方法。

若要测试此方法,请执行下列操作:

  1. 在辅助线程的回调方法内设置断点。

  2. 以调试模式运行目标应用程序。

  3. 当应用程序停在该断点处时,运行外接程序。

public static void ThreadsItem(DTE dte)
{
    EnvDTE.Threads threads = dte.Debugger.CurrentProgram.Threads;
    MessageBox.Show("\nThe thread name: " + 
                    threads.Item(2).Name, "Testing Threads Item Method");
}
Shared Sub ThreadsItem(ByRef dte As EnvDTE.DTE)
    Dim threads As EnvDTE.Threads = dte.Debugger.CurrentProgram.Threads
    MessageBox.Show("The thread name: " + threads.Item(2).Name, _
                    "Threads Test - Item Method")
End Sub

.NET Framework 安全性

请参见

参考

Threads 接口

EnvDTE 命名空间

其他资源

如何:编译和运行自动化对象模型代码示例