-1

I am trying to figure out a way to generate each number between 2 other numbers. For example, if the first number is 7 and the last number is 12 I want to generate an array(?) of Int that would be Intarray {7,8,9,10,11,12}.

Is this possible?

1 Answers1

1

Enumerable.Range(,) will be your friend.

glabek94
  • 71
  • 1
  • 3