Suppose I have a Custom Config File which corresponds to a Custom-defined ConfigurationSection and Config elements. These config classes are stored in a library.
Config File looks like this
<?xml version="1.0" encoding="utf-8" ?>
<Schoool Name="RT">
<Student></Student>
</Schoool>
How can I programmatically load and use this config file from Code?
I don't want to use raw XML handling, but leverage the config classes already defined.