Configuration

In_Configuration(0)(2).toString

What does (0)(2) means?

1 Like

Duplicate post: Configuration dictionary

Hi @C99

What is the Variable type of In_Configuration

If it is System.Data.Datatable as variable type

Instead of this try this one In_Configuration.Rows.Item(0)(2).toString

Here (0) → Column and (2) → Row

Regards
Gokul

2 Likes

Dictionary<string,string>

Check out the XAML file @C99

ConfigDict.xaml (11.0 KB)

image

Regards
Gokul

1 Like

@C99 Basically (0)(2) indicates the row number and column number in a datatable
In this case configuration is a dictionary so it is a invalid one
in_config(key) should be given instead of inconfig(0)(2)

Regards

Sreejith S S

1 Like

Did you test the Workflow @C99 . Have you got the solution.

If yes, Kindly close this topic by mark as solved. It will help for other too.

1 Like

As I know (0) is refer row and (2) refer column in datatable

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.