Sequence about the dictionary format(using the currentRow)

What I’m curious about is

The data table is made of userid and username, and the variable value is declared by dictionary key and value,

I’d like to know how to assign this in the currentRow format.(i.e CurrentRow(0) like this?)

Is there a related sequence? Please let me know

Thank you in advance.

Hi,

How about the following?

dict(CurrentRow("userid").ToString) = CurrentRow("username").ToString

This assumes dict is Dictionary<string,string> type.

Regards,

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