Write a program in C# for checking a given number is PRIME or not.
What is difference between string and stringbuilder in c#?
What?s the .NET datatype that allows the retrieval of data by a unique key?
What is the difference between namespace and class in c#?
Explain the process of Serialization?
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.
Can you prevent a class from overriding?
Can you inherit multiple interfaces?
7 Answers Host4Big, Mind Tree, Moftak Solutions, Siebel Systems,
what are the bugs are faced in a project
how to retrive a TextBox value in to Sql database using C# windows form application coding
What is marshalling in c#?
I want to print "Hello" even before main() is executed. How will you achieve that?
How to update the gui from another thread in c#?