Answer Posted / kinjal panchal
Boxing:- Boxing is converting value type to Reference type.
for Example:-
int i=0;
object O=(object)i;
Casting:- Casting is converting value type to another value type
for example:-
int i=0;
long l=(long)i;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain difference between dataset and datareader?
Explain About WebService
What are the uses of list view control in Asp.net?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
What is the difference between session and viewstate?
Describe the master page.
Which namespace is used by ado.net?
List the advantages and disadvantages of user control an custom control?
Which authentication uses a combination of windows and iis authentication?
Describe briefly what is the role of IIS on an ASP.NET application? What does it for the same application?
Is asp.net is a programming language?
Define web services in asp.net.
How is it possible for .NET to support many languages?
Why mvc is faster than asp.net? : Asp.Net MVC
What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC