+1 vote
in Dot Net by

 What is difference between constants and read-only?

1 Answer

0 votes
by

Constant variables are declared and initialized at compile time. The value can't be changed afterwards. Read only is used only when we want to assign the value at run time.

...