this is the xml
<Basic>
<Results>
<Result>a1</Result>
<Result>a2</Result>
<Result>a3</Result>
</Results>
</Basic>
I need to read this xml file and create a list that will contain
list[0] = a1
list[1] = a2
list[2] = a3
what is the simple and fast way to do it ?