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 are Identifiers?
Identifiers are the names given to classes, methods, variables and interfaces. It must be a whole word and starts with either an alphabet or an underscore. They are case sensitive. The main point you should bear in mind is that the names should not clash with C# keywords.

Some programmers use @ prefix as a first character while declaring identifiers to avoid clash with a keyword but it is not a recommended practice. Following names are valid identifiers in C#

1. Hello
2. hello
3. H_ello
4. HelloYOu
What is the difference between the Debug class and Trace class?
What is the partial classes?
What is Multithreading in C#?
How is method overriding different from method overloading?
What is the "Threading"?
How do assemblies find each other?
What are the characteristics of C#?
Is it possible to have a static indexer in C#?
What is the static constructor in C#?
What is the Interface (C#)?