What are circular references?


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

Post New Answer

More C Sharp Interview Questions

What is the .NET collection class that allows an element to be accessed using a unique key?

0 Answers   Siebel,


Describe how a .net application is compiled and executed

0 Answers  


What is string programming language?

0 Answers  


What does .length do in c#?

0 Answers  


How can you sort the elements of the array in descending order?

2 Answers  






What is window application in c#?

0 Answers  


What?s the implicit name of the parameter that gets passed into the class? set method?

1 Answers  


Which is faster array or arraylist in c#?

0 Answers  


What are value types and reference types?

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  


Does c# provide copy constructor?

0 Answers  


What is the difference between interface and functional interface?

0 Answers  


Categories