Sobes.tech

Have you looked into the implementation of LINQ methods and do you understand how they work?

194

// case 2 // implement extension chunkwhile: // - combines neighboring elements into groups while samegroup(prev, current) == true. var data = new[] { 1, 3, 5, 2, 4, 4, 7 }; var chunks = data.chunkwhile((prev, curr) => (prev % 2) == (curr % 2)); foreach (var chunk in chunks) { console.writeline($"[{string.join(", ", chunk)}]"); } public static class case2class { public static ienumerable<ireadonlylist<t>> chunkwhile<t>( this ienumerable<t> source, func<t, t, bool> samegroup) { throw new notimplementedexception(); } }

177

What subjects in training did you find more difficult?

146

Is the Keycloak login form provided by Keycloak itself?

143

What is the difference between IEnumerable and IQueryable?

137

How is the yield mechanism implemented internally?

132

Using LINQ, calculate the flat statistics of products and modifiers in a nested cart model: name and total quantity. Consider the Quantity of cart items and modifiers.

125

Tell about one of the recent interesting or complex tasks.

120

How does service integration with a running Keycloak look like in C#?

119