in C# try -catch , can't catch the exception
- by sunglim
below code can't catch the exception.
does catch can't catch the exception which occured in the function?
try
{
Arche.Members.Feedback.FeedbackBiz_Tx a = new Arche.Members.Feedback.FeedbackBiz_Tx();
a.AddFreeSubscriptionMember(itemNo, buyerID, itemName, DateTime.Today, DateTime.Today);
}
…