How can I import linq and other libraries into invoke code activity?

Let us know more about the use case / what you want to achieve. The best along with sample data

Also have a look here:

@ext-o

can you try use the import pane instead

2 Likes

HI @ext-o ,
As per @jack.chan suggestion please import all the required libraries into “import” tab

In addition to the screenshot
grafik

we would assume that it is tried the following:

  • From an IEnumerable of RegexMatch the first Match / Match value is to retrieve or null when there is no first.

This we can do within an assign as well

myMatch = myIEMatchVar.FirstOrDefault()
myValue = myIEMatchVar.Select(Function (x) x.Value).FirstOrDefault()

Thank you!

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