LINQ Lambda expressions

Hi

Has anyone tried executing a simple C# Lambda expression like below in UiPath?
var longWords = words.Where( w ⇒ w.length > 10);
here words is a array of string containing multiple words.

I tried executing such a query but it wasn’t working.

However, lambda expression in VB (like below) works:
longWords = words.Where(Function(w) w.length > 10)

Hello,

Yes this is intended, UiPath only accepts VB.Nets expression for the time being.

Cheers

@Florent_Salendres : Cool. Thanks.