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 scalar property?
Is dapper better than entity framework?
How would you deploy your old applications with .net framework 4.0? Are the old applications compatible?
What is Attribute Routing in ASP.Net MVC?
what is ssdl?
What is page life cycle?
Why we need a separate mobile project template, while we can render our web application in mobile ?
Describe the gac in the .net framework.
What are HTML Helpers, AJAX Helpers in ASP.Net MVC?
What is NonActionAttribute ?
Explain the advantage of packaging over xcopy in .net?
How we can call a JavaScript function on the change of a Dropdown List in ASP.Net MVC?
How can I tell what .net framework is installed?
what is entity framework advantage?
What are sections?