What is boxing & unboxing?


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

Post New Answer

More C Sharp Interview Questions

List out the differences between array and arraylist in c#?

0 Answers  


How do destructors and garbage collection work in c#?

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  


What is hashset c#?

0 Answers  


Are classes passed by reference in c#?

0 Answers  






How can I produce an assembly?

0 Answers  


For read-only operation which property you have to designated?

0 Answers   Siebel,


What are the delegates in c#?

0 Answers  


Define c# i/o classes? List the commonly used classes?

0 Answers  


What does addressof operator do in background ?

0 Answers  


What is unsigned int?

0 Answers  


What is instantiating a class in c#?

0 Answers  


Categories