C# 10 brought implicit usings.
I globaly like them, but they're causing me a conflict on a particular class called Region as there's a conflict with the Microsoft.Identity.Client.Region class.
There's a nice thread here explaining how to disable implicit usings everywhere: C# 10: Disable Global Using
I don't want to do it globally, I want to do it just on specific classes. Alternatively, a solution that would allow me to disable a particular implicit using (Microsoft.Identity.Client.Region) would also serve my needs.