Answer Posted / rahultripathi
There is two type datatype available Value and reference
type . value are stored in stack and reference type used
in heap . when we copy data from stack memmory to heap it
call Boxing .
Int32 x = 10; object o = x ; // Implicit
boxing
Int32 y = 10;
object obj = (object) y; // Explicit Boxing
Rahul Tripathi
raultripathi@myway.com
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What are the Types of objects in ASP
Name the method that needs to be invoked on the dataadapter control to fill the generated dataset with data?
What is asp net objects?
What is asp.net and its advantages?
What is synchronous and Asynchronous post back ?
What is datagrid asp.net?
If there are multiple update panels on the page say upd1 and upd2. There is a button placed in upd1. How can you stop upd2 to update when button placed in upd1 is clicked?
What is difference between singleton and single call?
Where sessions are stored in asp.net?
there is two functions function a and function b like fun a(){.... ..... } fun b() { } in function b i write the coding to add two numbers and i need to dispaly the sum result in function a with out using global variable. how we do?
Which is better session or viewstate?
How do we implement bundling in MVC?
What is HTTPModule and HTTPcontext? What is the use of each?
Explain ViewState?
How can I have a particular web page in an asp.net application which displays its own error page?