Invoke method quiz

Please help identify the correct values.

Hi @Latifa ,
I think is current row

1 Like

Hi @Latifa

  1. Set the “TargetType” to System.Data.DataTable because you are calling a method on a DataTable object.
  2. Set “In/Out” to In because you are providing a parameter to the method.
  3. Set “TargetObject” to “dt2” because you want to add rows to this DataTable.
  4. Set “MethodName” to “ImportRow” because you want to use the ImportRow method to copy a DataRow from “dt1” to “dt2”.
  5. Set “Direction” to In because you are passing the DataRow from “dt1” as input to the ImportRow method.
  6. Set “Value” to “CurrentRow” because you want to use the DataRow from “dt1” that is currently being processed

Hope it helps!!

1 Like

Hi @Latifa

Target Object: dt2
Method Name: Import Row
Value: CurrentRow

Hope it helps!!

1 Like

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