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 the advantage of using asp.net routing?
Why to use html.partial in mvc?
I have 2+ years of fake experience,actually i could not answer for project questions..?how can i answer please suggest me..?
What is managed extensibility framework?
Can you set the unlimited length for "maxjsonlength" property in config?
Explain unit test done by tester on development team?
Explain the role of assembly in the .net framework.
What is the difference between viewbag and viewdata in mvc?
Is mvc 4 supporting windows azure sdk (software development kit) ?
What is the difference between partial and renderpartial?
What is ViewStart Page in ASP.Net MVC?
What is a razor file?
Explain covariance and contra-variance in .net framework 4.0. Give an example for each.
mention what is the difference between ado.net and classic ado?
What is the role of the jit compiler in .net framework?