Skip to content

Instantly share code, notes, and snippets.

@jcansdale
Created August 2, 2016 19:06
Show Gist options
  • Save jcansdale/b652f32617cca854b444191bafa13a45 to your computer and use it in GitHub Desktop.
Save jcansdale/b652f32617cca854b444191bafa13a45 to your computer and use it in GitHub Desktop.
static string getNamePreserveCase(EnvDTE.Document doc)
{
var name = doc.Name;
var fullName = doc.ProjectItem.FileNames[0];
name = fullName.Substring(fullName.Length - name.Length, name.Length);
return name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment