Welcome, Guest Ohm namah shivoy
www.faqpanel.com
Home | ASP.Net | C-Sharp | Winforms | MS SQL | AJAX | XML | .Net Training*** | Search
Invite friends 
Extras 
VS Tips & Tricks
Top 10 .Net Tools
Special folders in ASP.Net
VS Find Combobox
 C-Sharp (C#) Interview Questions and Answers
What is the "Reflection"?
Reflection is a generic term that describes the ability to inspect and dmanipulate program elements at runtime. For example, reflection allows you to:

1. Enumrate the members of a type
2. Instantiate a new object
3. Execute the member of an object
4. Find out the information about a type
5. Find out the information about a assembly
6. Inspect the custom attributes applies to a type.
7. Create and compile new assembly

Where should I use an Anonymous method?
What is the difference between the System.Array.CopyTo() and System.Array.Clone()?
How many Predefined Reference Types supported by C#?
Why should we use Anonymous method?
How many .Net languages can a single .Net DLL contain?
What is the GAC? What problem does it solve?
What is an Anonymous method in C#?
How do I create an instance of a type if I only know its name?
Are private class-level variables inherited?
what is the difference between abstract class and interface in C#?