Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Concatenate References (Read 1351 times)
Oats
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 1
Joined: Jul 10th, 2020
Concatenate References
Jul 10th, 2020 at 5:50am
Print Post  
How to go from
Code
Select All
MindFusion.Diagramming.Layout.TreeMapLayout; 


To this:
Code
Select All
aLayout.TreeMapLayout; 


In another words how to do:
Code
Select All
Name aLayout = MindFusion.Diagramming.Layout; 


Where:
Code
Select All
aLayout.TreeMapLayout tm = new aLayout.TreeMapLayout(); 



I'm using libraries where there's multiple names in my references.
  
Back to top
 
IP Logged
 
Slavcho
YaBB Moderator
*****
Offline


tech.support

Posts: 3147
Joined: Oct 19th, 2005
Re: Concatenate References
Reply #1 - Jul 10th, 2020 at 11:00am
Print Post  
Create a namespace alias -

Code
Select All
using aLayout = MindFusion.Diagramming.Layout; 



Regards,
Slavcho
Mindfusion
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint