a part of the framework we are working with has some extension methods that we would like to replace for debug reasons. While Simply replacing these in the code would be a viable option, I was wondering if we could to it with a "using" statement in the top of our c# files, rather than changing back and forth on each line where we use it.
While using normally works to solve conflicting names for classes in different namespaces, I can't find a way to solve this for extension methods, as this practically is just a reference to a static method. Not including the namespace with the original extension method is not an option.
Hope this makes sense, and that you people have any good solutions :)
Thanks / Jannek