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
In C#, for String class Equals means value equality or reference equality?
The default implementation of Equals supports reference equality only, but derived classes can override this method to support value equality.

Reference equality occurs when two reference type objects refer to the same object. Sometimes reference types need to define value equality instead of reference equality. Fortunately, the Equals method is virtual, so derived reference types may override it.

What is the difference between // comments, /* */ comments and /// comments?
What does the keyword virtual mean in the method definition?
What is the static class?
What is Multithreading in C#?
What namespaces are necessary to create a localized application?
How to get file extention using C#?
What is Application domine in C#.Net?
Can you inherit multiple interfaces?
What is the differences between Value Types and Reference Types:
Does C# do array bounds checking?