Is there an equivalent of exit() for quitting a c# .net application?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between structure and class in c#?
If a base class has a bunch of overloaded constructors, and an inherited class has another bunch of overloaded constructors, can you enforce a call from an inherited constructor to an arbitrary base constructor?
What is the difference between internal and protected in c#?
what is a callback function?
Why do we use readonly in c#?
what are value types and reference types? where they are stored?
Can a struct inherit from an interface in c#?
What is shared inheritance
What is helper method in c#?
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...
What does typeof return c#?
Did a generic class can be inherited by a normal class?