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 Interview Questions and Answers / FAQs
What is C# (C-Sharp)?
C# is a new language created by Microsoft and submitted to the ECMA for standardization. According Microsoft "C# is a modern, object-oriented language that enables programmers to quickly build a wide range of applications for the new Microsoft .Net platform, which provides tools and services that fully exploit both computing and communications."
What are the characteristics of C#?
C# is designed for both computing and communication is characterized by several key features. It is -

1. Simple
2. Consitent
3. Modern
4. Object-oriented
5. Type-safe
6. Versionable
7. Compatible
8. Interoprable and
9. Flexible

What is BOXING and UNBOXING in C#?
BOXING in C# is the conversion of a VALUE type on stack to a OBJECT type on the heap. Vice-versa the conversion from an OBJECT type back to a VALUE type is known as UNBOXING and it requires type casting.
In how many ways you can create new copies of an existing string in C#?
There are two ways:

1. Using overloaded = operator like - string s2 = s1;
2. Using the static Copy method like - string s2 = string.Copy(s1);

In how many ways you can compare two strings in C# using overloaded methods and operators?
There are three ways:

1. Overloaded Compare() method
2. Overloaded Equal() method
3. Overloaded == operator.

Displaying page 1 of 25NextLast
What is GUID and why we need to use it and in what condition? How this is created?
What is the difference between an .EXE and a .DLL?
Can I use inline assembly or IL in C# code?
Where should I use an Anonymous method?
Which collection class uses the unique key for the collection?
Can you allow class to be inherited, but prevent the method from being over-ridden?
Is it possible to use multiple inheritance in .Net?
Can you declare the override method static while the original method is non-static?
what is the difference between abstract class and interface in C#?
How do I launch Internet Explorer in C#?