我是 Linq 的新手,所以对非常基本的问题表示歉意。
我有以下类型的 XML
<QuestionSet type="MCQ">
<Question>
What will the output of following
// main()
// {
// int x = 10, y = 15;
// x = x++;
// y = ++y;
// printf("%d, %d", x, y);
// }
</Question>"
<Options>
<Option number="1">10, 15</Option>
<Option number="2">10, 16</Option>
<Option number="3">11, 15</Option>
<Option number="4">11, 16</Option>
</Options>
</QuestionSet>
我想通过属性 1、2、3 和 4 来获取选项值。