Hi. I am saving some variables inside c# static class. I want to access these variables without writing library name. For ex:
I want to use CustomClass.var1 instead of CustomLibrary.CustomClass.var1
Hi @Ranya ,
Maybe you could try importing the class namespace from the Imports Panel and check if your able to directly access the CustomClass
?
Him
You can have those namespace imported within project or even package levels
Once after importing u can just call by names instead of calling the entire library
Have a view on this doc for more info on managing namespace
Cheers @Ranya