CurrentValueRecord.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Item[Int32] |
返回具有给定字段序号的值。 |
Item[String] |
获取具有给定字段名称的值。 |
Item[Int32]
返回具有给定字段序号的值。
public:
virtual property System::Object ^ default[int] { System::Object ^ get(int ordinal); };
public override object this[int ordinal] { get; }
member this.Item(int) : obj
Default Public Overrides ReadOnly Property Item(ordinal As Integer) As Object
参数
- ordinal
- Int32
字段的序号。
属性值
字段值。
实现
适用于
Item[String]
获取具有给定字段名称的值。
public:
virtual property System::Object ^ default[System::String ^] { System::Object ^ get(System::String ^ name); };
public override object this[string name] { get; }
member this.Item(string) : obj
Default Public Overrides ReadOnly Property Item(name As String) As Object
参数
- name
- String
字段的名称。
属性值
字段值。