TraceReader.Item[] 属性

定义

获取指定的列。

重载

Item[Int32]

获取索引位置指定的列。

Item[String]

获取具有指定名称的列。

Item[Int32]

获取索引位置指定的列。

public:
 property System::Object ^ default[int] { System::Object ^ get(int index); };
public object this[int index] { get; }
member this.Item(int) : obj
Default Public ReadOnly Property Item(index As Integer) As Object

参数

index
Int32

一个指定列在记录中的索引位置的 Int32 值。

属性值

一个用于指定列的 Object 系统对象值。

实现

示例

Readme_Tracer

适用于

Item[String]

获取具有指定名称的列。

public:
 property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public object this[string name] { get; }
member this.Item(string) : obj
Default Public ReadOnly Property Item(name As String) As Object

参数

name
String

一个指定列名称的 String 值。

属性值

一个用于指定列的 Object 系统对象值。

实现

示例

Readme_Tracer

适用于