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
Can you please explain the difference between thread and process?
what is common language specification?
what is common type system?
Explain about delegate?
How to send xml file on server using http protocol?
What is portable executable?
Explain convert.tostring and i.tostring method?
What do you mean by option strict on?
What is the differnce between managed code and unmanaged code?
Is vb.net a programming language?
List the types of authentication?
What is DLL HELL in VB.NET
difference between checkbox vs radiobutton??
what is difference between web.config and machine.config and where it will be ?
Can you please explain the difference between value and reference types?