Row.Get Method

Definition

Overloads

Get(Int32)

Returns the column value at the given index.

Get(String)

Returns the column value whose column name is given.

Get(Int32)

Returns the column value at the given index.

public object Get (int index);
member this.Get : int -> obj
Public Function Get (index As Integer) As Object

Parameters

index
Int32

Index to look up

Returns

A column value

Applies to

Get(String)

Returns the column value whose column name is given.

public object Get (string columnName);
member this.Get : string -> obj
Public Function Get (columnName As String) As Object

Parameters

columnName
String

Column name to look up

Returns

A column value

Applies to