What is value type and refernce type in .net?
Answer / Himanshi
In .NET, value types are simple data types such as integers, floating-point numbers, and structs that hold their own memory. They are stored on the stack and have a fixed size. Reference types, on the other hand, include objects, arrays, and classes, which store their reference on the stack while their instance is allocated on the heap. Examples of value types are int, bool, and DateTime; examples of reference types are String, List<T>, and MyClass.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do we access crystal reports in .net?
Explain Different kinds of methods?
What tools can I use to develop .net applications?
Explain about major components of the .NET framework.
How viewstate is being formed and how it's stored on client in .net?
Explain how to redirect tracing to a file?
What is RPC? What is the use of it?
Please explain is the jit an interpreter?
object is physical and class is logical..here class is not occupying any memory as our definition of class but i got a question then the class where it stores if it is not occupying any memory....
What is MSIL, IL, CTS?
you have a requirement from client, he has an XML file and you need to insert the data into 5-6 tables in database. explain me the procedure.
How is .net able to support multiple languages?