|
Iterator is a method, get accesor or an operator which performs custom iterations over an array or ....
|
Category:
C#
|
Date:
10/1/2010 11:38:31 AM
|
|
|
|
Yes, it is possible. This can be done with the help of the sealed keyword. It can be done as follows....
|
Category:
C#
|
Date:
10/1/2010 11:37:31 AM
|
|
|
|
If the return type is not included at the time of declaration of the method, the compiler thinks it ....
|
Category:
C#
|
Date:
10/1/2010 11:36:31 AM
|
|
|
|
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
|
|
|