Hi,
There is collection as following:
Type Systme.Collections.Generic.IColloection<System.String>
$hoge= {“a”,“b”,“c”}
and already datatable $piyo is prepared in advance as following:
$piyo
column1(String) column2(String) column3(String)
How to add itmes in collection $hoge into datatable like
column1(String) column2(String) column3(String)
“a” - -
“b” - -
“c” - -
I believe I can do it with “add data column” but dont know how to use it.
Pls let me know if “add data column” is available in this case and actually how to use it.