How do I create a multi language, multi file assembly?
What is array class in c#?
In which order the constructor is called for an inherited class?
FOR EXAMPLE : CLASS Dotnet { } creating object: Dotnet dn=new Dotnet(); NOW THE QUESTION IS WHICH IS CALLED AS OBJECT ? EITHER dn OR new Dotnet() and CAN YOU PROVE YOUR ANSWER????? PLEASE REPLY...
Structs are largely redundant in c++. Why does c# have them?
what is meant inheritance. can you exaplain what kind inhertance ussed in your project
What is the difference between static and private constructor in c#?
can we assign null value to value type in c#?
12 Answers Idea, Microsoft, Wipro,
what is the main differnce between const,readonly and static
3 Answers Beehive Systems, CDAC,
Is concurrent queue thread safe?
Can you change the value of a constant filed after its declaration?
What is difference between event and delegate in c#?
I have a class declared as below public class a { public void add() {} } What is the diference between a a1 =new a; and simply a a1;