Logic for FOR loop in c#
- by karthik
My method has a parameter, I have to use that in my For loop to iterate.
For example, I have a text file with 4 lines.
If the Param is 1, the for loop must iterate through the last three lines
If the Param is 2, the for loop must iterate through the last two lines
If the Param is 3, the for loop must iterate through the last one line
How can i pass this param in my For loop to achieve all the three scenarios stated above ?