Possible Duplicate:
What is the difference between const and readonly?
are these interchangeable? can you show me code on how you would apply the two?
are these interchangeable? can you show me code on how you would apply the two? |
|||||||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
No, they aren't. A A |
|||||||
|
|
|
Const can't perform evaluations whereas readonly can on initialization. (ie you could read in a value for a readonly variable from a config file or based on some other parameter that is known at runtime, const can only be set to something known at compile time) |
|||
|
|
|
A member of any type can be A |
|||
|
|