How to access c# class without Libraryname.classname

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

https://docs.uipath.com/studio/standalone/2023.4/user-guide/managing-namespaces#from-the-project-panel

Cheers @Ranya