Browse by Tags
All Tags »
LINQ »
Lambda »
PowerShell (RSS)
Sorry, but there are no more tags available to filter with.
The Take pair of functions are very similar to the Skip functions . The Take expression does essentially the opposite of the Skip functions. Skip is useful for getting elements further down the pipeline. Take is used for getting elements
Read More...
Next up in the PowerShell LINQ series is SkipWhile . This LINQ function takes an enumerable instance and a predicate. The function will skip the elements in the enumerable while the predicate is true. The argument to the predicate is
Read More...