Integer & struct are value types or reference types in .NET?
Answer Posted / guest
Integer and struct are value types in .net.Integer has
fixed range of values hence they are going to be stored in
the stack memory.so,what ever is stored in stack memeory is
a value type.struct is similar to a class(1.e, it contains
dataitems of different datatypes) but the only difference
is that struct is a value type ,class is a reference
type.struct is a value type because the values in struct
can be accesed with the help variable created for the
struct i.e,Dot operator appended to the struct variable can
be used to access each of the individual data items in the
struct class.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain garbage collection?
Is there built-in support for tracing?
Conceptually, what is the difference between early-binding and late-binding?
What is the use com component in .net?
What is the purpose of IClonable interface in .NET?
State some of the different languages supported by .net?
What is dot net architecture?
What is the difference between .net 2000 and .net 2005(features)? Which one is better?
Explain what is heap and what is stack?
State the differences between the dispose() and finalize().
How is .net able to support multiple languages?
Explain the difference between the while and for loop.
What does jit compilation do in .net?
What is the advantage of .net core?