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 ? | 2 Yes | 0 No |
Post New Answer View All Answers
In the Repeater control which way you can edit?
Is asp.net free?
Define a multilingual website?
How can u deifne the benefits and limitation of using Viewstate for state management?
What is true about application service provider?
Please briefly explain the usage of global.asax?
What is session in web technology?
What are sessions in asp net?
what is the difference between response.write() and response.output.write()?
How may clustered index we can create in table?
Demonstrate Render and PreRender?
What is the purpose of App_Code folder in ASP.NET? Why we this?
Which platform does Microsoft .NET use for exchanging data between applications?
Why and where this web.config file is used?
when a request is made in Life cycle of ASP.NET page .