Iam using a library which uses a class named "Transaction". The problem is that i want to define a class in my project with the same name too.
I know about aliases, but the problem is that it looks really ugly. Is there a way to use aliases only for a specific type? So i dont have to use Alias.Class for every class in the library, but only when i use Transaction?
Example (Class1,Class2 and Transaction are in the same library directive):
Class1 obj1 = new Class1();
Class2 obj2 = new Class2();
Library.Transaction obj3 = new Library.Transaction();