What is the difference b/w constant & read only variable?
Answer Posted / maloy.adhikari
Constants: The value can't be changed
Read-only: The value will be initialized only once from the
constructor of the class.
Const:
1)Can not be static.
2)The value is evaluated at compile time.
3)It is initialized at declaration only.
4)the const keyword is used for compile-time constants
Readonly:
1)Can be either instance-level or static.
2)The value is evaluated at run time.
3)It can be initialized in declaration or by code in the
constructor. Therefore, readonly fields can have different
values depending on the constructor used.
4)the readonly keyword is used for runtime constants.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is viewstart page in mvc?
Does .NET Framework support SAX?
What is .net architecture and framework?
Mention the core components of .net framework?
What is the 'page life cycle' of an ASP.NET MVC?
What is entityset? : Entity framework
Can you Write the GC(Garbage Collector) Algoritham in .NET? (But not Explination of Working of GC).
What are the difference between asynchronous controller implementation between asp.net mvc 3 & asp.net mvc 4?
What are sections?
How does the .net framework 3.0 relate to the .net framework 2.0?
What is the difference between .net core and .net framework?
What is the full form of sp?
Explain covariance and contra-variance in .net framework 4.0. Give an example for each.
Is it possible to combine asp.net webforms and asp.mvc and develop a single web application?
Is .net framework dead?