Some background: I would like to automatically create a readme.txt or release.txt file for my project from Jira. For that I would like to know if there is a way to retrieve all closed tickets starting a given ticket Id for project X? I was thinking to do that from my nant script or maybe from my c# code. Is this is a good way or are there better practices?
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...