Skip to content

Instantly share code, notes, and snippets.

@dmdymov
Created November 25, 2016 09:26
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 dmdymov/4bfc5640f87e46489318468a1925f957 to your computer and use it in GitHub Desktop.
Save dmdymov/4bfc5640f87e46489318468a1925f957 to your computer and use it in GitHub Desktop.
SOExample1
((e.NewValue as TreeViewItem).Tag as FileSystemInfo).FullName;
// верхняя строка разворачивается в набор последовательных присваиваний и приведений.
var treeViewItem = e.NewValue as TreeViewItem;
var tag = treeViewItem.Tag;
var fileSystemInfo = tag as FileSystemInfo;
var fullName = fileSystemInfo.FullName;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment