TraceListenerCollection.RemoveAt 方法

从集合中移除指定索引处的 TraceListener

**命名空间:**System.Diagnostics
**程序集:**System(在 system.dll 中)

语法

声明
Public Sub RemoveAt ( _
    index As Integer _
)
用法
Dim instance As TraceListenerCollection
Dim index As Integer

instance.RemoveAt(index)
public void RemoveAt (
    int index
)
public:
virtual void RemoveAt (
    int index
) sealed
public final void RemoveAt (
    int index
)
public final function RemoveAt (
    index : int
)

参数

  • index
    要从列表中移除的 TraceListener 的从零开始的索引。

异常

异常类型 条件

ArgumentOutOfRangeException

index 不是列表中的有效索引。

备注

索引是从零开始的。因此,必须从特定 TraceListener 的数字位置中减去 1 才能删除该 TraceListener。例如,若要移除第三个 TraceListener,需要指定 myTraceListenerColl.RemoveAt(2)

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

TraceListenerCollection 类
TraceListenerCollection 成员
System.Diagnostics 命名空间
TraceListenerCollection 类
TraceListener 类
DefaultTraceListener 类
TextWriterTraceListener 类
ConsoleTraceListener 类
Debug 类
Trace 类