In Java, we can declare a static string with the value of $HeadURL:$ that is updated by every Subversion commit. This can then be extracted from a produced class file to find the source file that corresponds to the class file(and revision information).
In C we can declare a static char[] to do the same thing.
What is the recommended way to accomplish this goal in C#?
Basically, I'm looking for best practice to use $HeadURL:$ information, that has been updated by Subversion, to match production code with source code.
I'm familiar with Assembly version and the like, but that does not provide us the granularity we are looking for.