I have a method that throws an exception in the namespace: MyApp.Domain. I have some of my custom namespace exceptions: MyApp.Domain.Exceptions. So, I have the following:
using MyApp.Domain.Exceptions
using System;
namespace MyApp.Domain
{
public class SomeClass
{
public void DoStuff(){
}
}
}
I get my resume with intellisense, but not an exception. Should I use include and create an external xml comment file as they are under different namespaces? None of the exceptions appear in intellisense, mycustomexception, or system.exception.
Thanks.
source
share