What is the difference between const and readonly in C#?

前端 未结 30 3254
挽巷
挽巷 2020-11-22 05:05

What is the difference between const and readonly in C#?

When would you use one over the other?

30条回答
  •  借酒劲吻你
    2020-11-22 05:44

    const: Can't be changed anywhere.

    readonly: This value can only be changed in the constructor. Can't be changed in normal functions.

提交回复
热议问题