What is the process of delegation?


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

Post New Answer

More C Sharp Interview Questions

Is dictionary reference type c#?

0 Answers  


Is a valid int value?

0 Answers  


What is type class in c#?

0 Answers  


What is the difference between an XML "Fragment" and an XML "Document." ?

1 Answers  


What is ilasm.exe used for?

0 Answers  






Can an Assembly have multiple versions

13 Answers   TCS,


Can you specify an access modifier for an enumeration?

0 Answers  


What is dll in c#?

0 Answers  


What are the 3 logical operators?

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 a delegate how is it type safe?

0 Answers  


How do you inherit from a class in C#?

1 Answers  


Categories