Answer Posted / monu
Boxing is an implicitly method which is use to convert the
value type datatypes.
Unboxing is an Explicitly.
Int32 x = 20; object o = x ; // Implicit
boxing
Int32 y = 20;
object obj = (object) y; // Explicit Boxing
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is HTTPModule and HTTPcontext? What is the use of each?
Is there any property names “isnavigating”?
Explain the use of fragment caching.
What is active web pages?
Will the asp.net validators run in server side or client side?
What is the difference between executescalar and executenonquery?
What is ascx?
Define xmlvalidatingreader class.
Dataset is the disconnected environment. suppose if you are binding records to gridview (disconnected environment) and you are making changes to the the grid but before updating the database if any other user modify the data, how will you avoid such problem?
What are the layouts of ASP.NET Pages?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
What is the difference between abstract class vs interface? Can give me the real time examples?
Tell me how asp.net mvc differs from asp.net web forms? : asp.net mvc
What is http pipeline in asp.net?
How to find last error which occurred in Asp.net ?