What is the use of "default" and "Using" keyword?
Answers were Sorted based on User's Feedback
Answer / pavan kumar
"default" is a keyword which can be used in two ways
1)In switch as default label
2)In generics as default paramenter.
same as "using" key word this also used in two ways
1)For implementing the namespace into current class
2)Used to check properly dispose of object using the
IDisposable interface
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / ravi
"default" ensures the correct initialisation takes place
and "Using" ensures the disposal of object.
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / kamil
If expression does not match any constant-expression, control is transferred to
the statement(s) that follow the optional default label. If there is no default
label, control is transferred outside the switch.
Is This Answer Correct ? | 3 Yes | 3 No |
What is boxing & unboxing?
Explain the feature of c# language?
What is difference between code access and role based security?
Why to use lock statement in c#?
What is the solution if you need to manipulate sets of items?
What is a multicast delegate in c#?
What is an int c#?
an object,class is value type or refarance type. ?
What is a thread c#?
class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....
what is overloading & overriding
3 Answers Fulcrum Logic, Synergy,
Explain the difference between “as” and “is” operators used in c#?