Functional programming with Linq – Enumerable.Range

In my Learning F# posts you probably saw how you can generate an int array like this:

let x = [1 .. 10];;

this returns 1, 2, 3, 4, 5, 6, 7, 8, 9, 10.

This is pretty cool, and fortunately, you have something very similarly in C# with Enumerable.Range which you can use by supplying a starting number and a count:

var x = Enumerable.Range(1, 10);

 

Learn to build Production-Ready Serverless applications

Want to learn how to build Serverless applications and follow best practices? Subscribe to my newsletter and join over 4,000 AWS & Serverless enthusiasts who have signed up already.

Leave a Comment

Your email address will not be published. Required fields are marked *