Table of Contents

Operator implicit operator

Namespace
Skyline.DataMiner.Scripting
Assembly
QActionHelperBaseClasses.dll

implicit operator object[](QActionTableRow)

Implicitly converts the row to an object array.

public static implicit operator object[](QActionTableRow source)

Parameters

source QActionTableRow

The row to convert.

Returns

object[]

Examples

MasterTableQActionRow row = new MasterTableQActionRow();
row.MasterIndex = "1";
row.MasterDescription = "Main";
object[] rowData = row;