Custom Configuration Sections
.NET (Core and Framework)
1
Posts
1
Posters
0
Views
1
Watching
-
I'm having trouble finding good examples that demonstrate the implementation of custom configuration sections in 2.0, using C#, that include collections, for example:
<Section1 name1="value1" />
<child value="test1" />
<child value="test2" />
</Section1>How can I load the above custom config section and have a public property for both name1 AND a public property that exposes a collection of child values? thx