What is the difference b/w Readonly Variable and Constant
Variable?
Answer Posted / niranjan
The readonly keyword differs from the const keyword. A
const field can only be initialized at the declaration of
the field. A readonly field can be initialized either at
the declaration or in a constructor. Therefore, readonly
fields can have different values depending on the
constructor used. Also, although a const field is a compile-
time constant, the readonly field can be used for run-time
constants, as in this line: public static readonly uint l1
= (uint)DateTime.Now.Ticks;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Explain option explicit?
When do you use virutal keyword?
Explain about the performance of visual basic?
Explain the difference between .dll extension and .exe extension files?
Name some of the features present in vb 2005?
What is the purpose of an Assembly?
What is tracing?
What is the differnce between managed code and unmanaged code?
Explain how to send xml file on server using http protocol?
What’s the difference between private and shared assembly?
What is the advantage of using system.text.stringbuilder over system.string?
Can you please explain the difference between thread and process?
What are the features of c# which are not present in vb.net?
Explain the difference between thread and process?
Explain code security?