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
Which is an advantage of application service providers?
What is the meaning of TestApi?
What is the best Macanism to clear the Cache in asp.net
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?
Web API uses which library for JSON serialization?
What is server transfer?
Where is the view state data stored?
How many types cache in asp net?
Why web api is better than wcf?
What do you understand by aggregate dependency?
Define the steps to set up validation control.
What is preprocessor in .net?
If 200 is for all successful operation then why do we have 201 response codes?
What is the difference between the get method () and post method ()?
how to transfer the file from client to server using asp.net