Property this
- Namespace
- YndigoBlue.Velocity.Model
- Assembly
- YndigoBlue.Velocity.dll
this[int]
Gets or sets a field value by zero-based column index. Getting returns an untyped object; use the typed GetField* methods for type-safe access.
public object this[int fieldIndex] { get; set; }
Parameters
fieldIndexintThe zero-based column index.
Property Value
this[string]
Gets or sets a field value by column name. Getting returns an untyped object; use the typed GetField* methods for type-safe access.
public object this[string fieldName] { get; set; }
Parameters
fieldNamestringThe column name.