I have the following XML
<Appointment>
<FollowupDays>
<boolean>true</boolean>
<boolean>true</boolean>
<boolean>false</boolean>
<boolean>true</boolean>
</FollowupDays>
</Appointment>
I want a bool[] loaded from the elements of FollowupDays. The boolean elements are are items in the array.
Thanks in advance.
If you consider using
XElementwhich is supported.NET 3and above, you can consider using this: