Listing strings in app.config

I would like to save the list of lines in app.config: For example:

   <ResourceTypes>
    <Resource>Crusher</Resource>
    <Resource>Berth</Resource>
    <Resource>OBP</Resource>
   </ResourceTypes>

And later use this list to populate the combobox on winform.

How to read it from app.config (C #).

thanks

+3
source share

Source: https://habr.com/ru/post/1710961/


All Articles