Using .net s setup project, I want to write the location that my software is installed to into the registry, in order to help a plugin know where the main application is. Is there some kind of %variable% I can use which represents the folder to which the application was installed?
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, ...