If a.equals(b) is true then a.gethashcode & b.gethashcode must always return same hash code.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

What does it mean?

0 Answers  


What is view state c#?

0 Answers  


How to rotate an Image in C#?

0 Answers   Petranics Solutions,


What is desktop application testing?

0 Answers  


Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.

1 Answers  






Can a private virtual method can be overridden?

0 Answers  


Can you prevent your class from being inherited and becoming a base class for some other classes?

2 Answers   Mind Tree,


What is the difference between interface and abstract class ?

2 Answers   Basware, BITS,


How do you create multiple inheritance in C#?

5 Answers   Microsoft,


What is type system in c#?

0 Answers  


What types of object can I throw as exceptions?

0 Answers  


in the nunit test framework, which attribute must adorn a test class in order for it to be picked up by the nunit gui?

0 Answers   Siebel Systems,


Categories