Share via


LogsTableRow.GetDecimal Method

Definition

Overloads

GetDecimal(Int32)

Gets the value of the column at the specified index as Decimal.

GetDecimal(String)

Gets the value of the column with the specified name as Decimal.

GetDecimal(Int32)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

Gets the value of the column at the specified index as Decimal.

public decimal? GetDecimal (int index);
member this.GetDecimal : int -> Nullable<decimal>
Public Function GetDecimal (index As Integer) As Nullable(Of Decimal)

Parameters

index
Int32

The column index.

Returns

The Nullable<T> value of the column.

Applies to

GetDecimal(String)

Source:
LogsTableRow.cs
Source:
LogsTableRow.cs

Gets the value of the column with the specified name as Decimal.

public decimal? GetDecimal (string name);
member this.GetDecimal : string -> Nullable<decimal>
Public Function GetDecimal (name As String) As Nullable(Of Decimal)

Parameters

name
String

The column name.

Returns

The Nullable<T> value of the column.

Applies to