VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,767 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a node IGrouping, want to use LINQ to set non-first nodes to be checked.
Don't know what keyword to set the node to be checked.
Thank you
Group.Where(Function(f) f.Index > 0). (Function(f) f.Checked = True)
Try this:
Group.Skip(1).All(Function(n)
n.Checked = True
Return True
End Function)