Explain the difference between proc. Sent by val and by sub?


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

Post New Answer

More C Sharp Interview Questions

give suitable code for all login controls

1 Answers  


Can a constructor have a return type?

0 Answers  


Why multiple inheritance is not possible in c#

8 Answers  


What is the difference between C# 3.5 and C# 4.0?

0 Answers  


What is hashmap in c#?

0 Answers  






What does a constructor do c#?

0 Answers  


Why do we use delegates?

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 the difference between array and arraylist in c#?

0 Answers  


Is array reference type / value type?

15 Answers   Accenture,


Why should I use interface in c#?

0 Answers  


Why we use anonymous methods in c#?

0 Answers  


Categories