User scope vs Application scope in app.config

前端 未结 2 1827
感动是毒
感动是毒 2021-01-04 15:43

What is the difference between the User scope and Application scope in app.config?

2条回答
  •  攒了一身酷
    2021-01-04 16:08

    User Scoped Settings will only affect the current user and are relatively safe to set. They are stored in a user specific location so there is no real issue with writing to them.

    Application Scoped Settings on the other hand are read-only and cannot be changed

提交回复
热议问题