What is the difference b/w Readonly Variable and Constant
Variable?
Answer Posted / arun
constants are dealt with at compile-time, while static
readonly fields are set at the time they are evaluated at
run-time.
the constant value will need to be recompiled if the
constant value changes. Libraries referencing a static
readonly field will reference the field and not the value,
thus they will pick up any change in the field without the
need for recompilation
constants will only support value types plus the
special .NET ones string and null while Static readonly
fields are able to hold reference types too.
So, constants should be used when it is very unlikely that
the value will ever change, or if no external apps/libs
will be using the constant. Static readonly fields should
be used when run-time calculation is required, or if
external consumers are a factor
Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is the difference between manifest and metadata?
Allowed program to auto-correct the database when loading a presentation.
Explain trace in vb.net?
Explain the use of console application?
What do you mean by serialization and deserialization and it's use.
Explain about the ruby interface generator?
How a base class method is hidden?
What are the various open source tool available for VB.NET?
Is vb net a scripting language?
Define clr?
What is trace in vb.net?
Explain the use of serialization and deserialization?
What languages does the .net framework support?
Explain jagged array in vb.net?
What is the ruby interface generator?