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
What is server side session?
Which is better session or viewstate?
Is redux flux?
In which event of page cycle is the viewstate available?
In asp.net, how can you validate drop down box?
What is Cookies Less Session?
How does session id work?
Define the term Web Garden?
Explain the difference between Repeater and Data list control in ASP.NET?
Describe how passport authentication works.
What is session mode in asp.net?
What are the features of asp net?
Difference between web user control and web custom control?
What are the session management techniques asp net?
How would you implement inheritance using c#?