|
If there is one catch block in the try block then it will catch every exception but it will not be c....
|
Category:
C#
|
Date:
10/1/2010 11:35:31 AM
|
|
|
|
Syntax:-
class sum1
{
sum1(int count)
{ }
}
class sum0 : sum1
{
sum0() : sum1(2) // calling bas....
|
Category:
C#
|
Date:
10/1/2010 11:34:31 AM
|
|
|
|
Both of them produce the same information. The difference lies that from where the information is go....
|
Category:
C#
|
Date:
10/1/2010 11:33:31 AM
|
|
|
|
Obsolete attributemarks the program entity as the one that is not recommended to be used further. Us....
|
Category:
C#
|
Date:
10/1/2010 11:32:31 AM
|
|
|
|
Generally , whenever the strings are to be compared using "==" or "!=" operators....
|
Category:
C#
|
Date:
10/1/2010 11:31:31 AM
|
|
|