The first instruction of all my C # files is " using System; ". Now with wireframe version 4, this namespace contains a class called Action. This is also the class name for my own code in the regularly used namespace. Now there is, of course, a conflict. Of course, I can resolve this conflict using the explicit "MyNamespace.Action", where I used to use the "Action". This is a few hundred, if not thousands of lines. Or I could not use the System namespace, which of course leads to many other problems. I would like to write something like "using System, but not System.Action", but I cannot find instructions for this. Any ideas?
source share