TraceReader.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定的列。
重载
| 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
参数
属性值
一个用于指定列的 Object 系统对象值。
实现
示例
适用于
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
参数
属性值
一个用于指定列的 Object 系统对象值。