Skip to content

Instantly share code, notes, and snippets.

@danielmackay
Created March 2, 2015 23:22
Show Gist options
  • Save danielmackay/b66cec390dc618085264 to your computer and use it in GitHub Desktop.
Save danielmackay/b66cec390dc618085264 to your computer and use it in GitHub Desktop.
public static class AssemblyExt
{
public static string GetAssemblyDirectory(this Assembly assembly)
{
var uri = new Uri(assembly.CodeBase);
return uri.LocalPath;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment