Answer Posted / kinjal panchal
Boxing:- Boxing is converting value type to Reference type.
for Example:-
int i=0;
object O=(object)i;
Casting:- Casting is converting value type to another value type
for example:-
int i=0;
long l=(long)i;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
What is hidden field in asp.net?
What is the differences between a primary key and a unique key in sql server?
Define static member?
What is asp.net response object?
Explain the Session state management options available with ASP.NET?
Do gac'ed assemblies have fulltrust?
What is the default authentication mode for asp.net?
What is __ requestverificationtoken?
What are cao and sao.
What are the Types of chaching. How to implement caching
Which type if caching will be used if we want to cache the portion of a page instead of whole page?
In Code-Behind class which kind of code (server or client) is found ?
How many types of validation are there?
What are the cookies types in asp.net?