Hi.. I am new to .net ..Is there any difference between exception and Exception in .net I received error while using 'exception'..
A:
Assuming you are using c#, the keyword Exception is case-sensitive. If you intend to use the class then you need to use the Exception class than in lowercase.
Sachin Shanbhag
2010-10-20 13:07:56
+1
A:
C# is case sensitive, while VB.NET is not. If your class/page/control is in C#, then there is a difference between Exception
and exception
, otherwise not.
bdukes
2010-10-20 13:08:30