Skip to content

Instantly share code, notes, and snippets.

@jbogard
Created February 11, 2011 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbogard/822906 to your computer and use it in GitHub Desktop.
Save jbogard/822906 to your computer and use it in GitHub Desktop.
I don't know why I find this so cool...
public string CombinePath(string path1, string path2, params string[] additionalPaths)
{
return additionalPaths.Aggregate(Path.Combine(path1, path2), Path.Combine);
}
@sgoguen
Copy link

sgoguen commented Feb 11, 2011

Stolen as we speak. I can't believe I didn't create an optional parameter version...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment