Hello Alexander,
First off, I am sorry if these major problems turn out to be caused by
Microsoft products.
I am trying to reproduce the issue that the assemblies cannot be recognized
by Visual Studio even if they were all there. But I am stuck by the step
"adding the Exception namespace to the project". In .NET framework class
library, there is no System.Exception namespace. Is the "Exception"
namespace defined by your own code? If that, when we change it to
System.Exception, we may get an compilation error "'Excpetion' is a
'namespace' but is used like a 'type'" from a code line like 'Exception e =
new Exception("");". This is because "System.Exception" is a class and
"Exception" can also be regarded as a namespace in this case. The
resolution is to explicitly specify the namespace "System" when we use
"Exception". For example, "System.Exception e = new System.Exception("");
". If I misunderstand you question, please let me know more detailed
repro-steps or send an example project to my mailbox (e-mail address removed)
so that I can have a clearer picture.
Have a good day!
Thanks
Jialiang Ge (
[email protected], remove 'online.')
Microsoft Online Community Support
=================================================
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).
This posting is provided "AS IS" with no warranties, and confers no rights.
=================================================