What are the different types of Classes in .NET?
Answer / Umesh Kumar Tiwari
There are primarily three types of classes in .NET: 1. Value types (structs) 2. Reference types (classes, interfaces, arrays, strings) 3. Delegates and Enums (can be considered as a specialized type of reference types).
| Is This Answer Correct ? | 0 Yes | 0 No |
Do you know what is lambda expressions in c#?
Is the COM architecture same as .Net architecture? What is the difference between them (if at all there is)?
Difference between machine.config and web.config?
How do you turn off cookies for one page in your site? Give an example.
What is meant by localization?
What is the advantage of .net core?
Hi, Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Got Exception in "try" block. Which "catch" throws exception and Why??? Please provide the answer in detail.. Thanks for the help!!!
Can you create instance of a class which has private constructor?
What is web.config in .net?
What are the properties of ADO.NET?
What class does icon derive from? Isn't it just a bitmap with a wrapper name around it?
What should you do to store an object in a viewstate?