.Net Framework Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 1659 Page Views: 

What is reflection in .Net?



Posted By: Avi Date: 25 August 2009 09:46:41 PM
 Answer:

Discovering class information at runtime.


Posted By: eTechPlanet


Date: 25 August 2009 09:46:41 PM

used to view the assemply information like objects and its methods and its type


Posted By: palanivel


Date: 7 October 2009 01:01:07 AM

Programming languages like C++ had the ability to collect information on the types. But this ability had limited scope. With .NET there is a powerful mechanism called .NET Reflection that not only allows you to introspect types but also raise methods on those types during runtime. Though the process of retrieving types information in .NET Reflection is slow compared to direct access of a method, property, or field, .NET Reflection provides dynamic execution of code and controls when used sparingly.


Posted By: Johndecruse


Date: 12 February 2010 11:54:33 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 23GKye
Related Questions
.Net Framework : What is difference between Monitor.Enter and Monitor.TryEnter functions?

What is difference between Monitor.Enter and Monitor.TryEnter functions?

Monitor.Enter waits for the lock until it does not get it, while Monitor.TryEnter will request for l....
Category: .Net Framework Date: 7/3/2010 1:52:22 PM
.Net Framework : What is CLR and what is the task perform by CLR?

What is CLR and what is the task perform by CLR?

CLR stand for Common Language Runtime. It has following tasks: 1. Executing IL 2. Code Verificatio....
Category: .Net Framework Date: 7/3/2010 1:48:33 PM
.Net Framework : Explain Managed and Unmanaged Code in .Net?

Explain Managed and Unmanaged Code in .Net?

Managed code is code that has its execution managed by the .NET Framework Common Language Runtime. T....
Category: .Net Framework Date: 1/8/2010 1:57:09 PM
.Net Framework : What are the various types of applications we can develop using .Net Technology?

What are the various types of applications we can develop using .Net Technology?

1) Console applications 2) Windows GUI applications (Windows Forms) 3) Windows Presentation Founda....
Category: .Net Framework Date: 1/8/2010 1:29:07 PM
.Net Framework : What is an Application Pool?

What is an Application Pool?

Application Pool is a new features introduced in IIS 6.0 which is used to isolate ASP.Net Web appli....
Category: .Net Framework Date: 1/3/2010 11:36:33 AM