What is Boxing and Unboxing?
Answer Posted / kautilya
Boxing is to implicitly converting value type to refrence
type,
int x = 10;
double y = x;
Unboxing is to explicitly converting refrence type to value
type
double y = 10.234;
int x = (int)y;
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is global.asax file used for?
How do you remove duplicates without using remove duplicate stage?
What are the advantages of using Master Pages?
What is caching? What are different ways of caching in asp.net?
What are the uses of list view control in Asp.net?
Define the term Scavenging in Caching?
Less than one page, how many windows will you be able to maintain?
What is Difference between Production Serves and Development Servers? And Suppose, m adding/deleting C# file in a project based on the Specific Requirement. These Files are Automatically updated in Production Servers? So Which tool is needed to do This One?
Where do the cookie state and session state information be stored?
How to communicate via Remote proxy with Client? a)MarshalByRef b)Marshal by Value or Any thing else?
Explain ViewState?
1.what is the application pool. 2.what is the HttpModile and Http Handler. 3.C# 3.0 Features ? 4.Anonoymous Type,methopd and claas in 3.0? 5.difference between statsic and const ? 6.session vs application 7.state management clint side and server side ? 8.Genric list 9.c# 3.0 vs 3.5
List the major built-in objects in asp.net?
What are the HTML server controls in ASP.NET?
What is master page in dtp?