Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. dynamic swxRootComp = _activeDoc.ConfigurationManager.ActiveConfiguration.GetRootComponent3(false);
  2. var nameValue = swxRootComp.Name;
  3.  
  4. dynamic swxRootComp = _activeDoc.ConfigurationManager.ActiveConfiguration.GetRootComponent3(false);
  5.  
  6. var nameValue = swxRootComp.Name;
  7.  
  8. [DebuggerDisplay("{value}", Name = "{key}")]
  9. public class KeyValuePairs
  10. {
  11. private object key;
  12. private object value;
  13.  
  14. public KeyValuePairs(object key, object value)
  15. {
  16. this.value = value;
  17. this.key = key;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement