Example of value type and refarnce type

Answers were Sorted based on User's Feedback



Example of value type and refarnce type..

Answer / saubhagya

Structures are value types and classes are reference types

Is This Answer Correct ?    19 Yes 1 No

Example of value type and refarnce type..

Answer / neerajtyagi

---Value Types (C# Reference)

The value types consist of two main categories:

Structs

Enumerations

Structs fall into these categories:

Numeric types

Integral types

Floating-point types

decimal

bool

User defined structs.


------Reference Types (C# Reference)

Variables of reference types, referred to as objects, store
references to the actual data. This section introduces the
following keywords used to declare reference types:

class

interface

delegate

This section also introduces the following built-in
reference types:

object

string

Is This Answer Correct ?    7 Yes 1 No

Example of value type and refarnce type..

Answer / kishore.a

Example for Value type is Structure.
Referenece type Class.

Is This Answer Correct ?    2 Yes 0 No

Example of value type and refarnce type..

Answer / git101288

class is the value type and struct is the refrence type
this the example for value type n refrence type

Is This Answer Correct ?    0 Yes 21 No

Post New Answer

More C Sharp Interview Questions

What is an array? Give the syntax for a single and multi-dimensional array?

0 Answers  


How C# 4.0 supports dynamic programming language?

0 Answers  


Is the following code legal?

0 Answers  


What do you mean by hashtable c#?

0 Answers  


What is the difference between an integer and int?

0 Answers  






What is Covariance and contravariance in C#?

0 Answers   HCL,


What is before string in c#?

0 Answers  


Does c# support parameterized properties?

0 Answers  


What is jagged array in c#?

0 Answers  


Will finally block get executed if the exception had not occurred?

2 Answers  


What is the delegates in c#?

0 Answers  


Why reflection is used in c#?

0 Answers  


Categories