2

XML ファイルがあり、ランダムなノードを 1 つだけ選択したいと考えています。私はほとんどそこにいるようですが、var を持つ foreach がループしています。ノードを 1 つだけ選択して返すにはどうすればよいですか?

XML:

<human_check>
  <qa>
    <q>2 + 2</q>
    <a>4</a>
  </qa>
  <qa>
    <q>1 + 2</q>
    <a>3</a>
  </qa>
  <qa>
    <q>6 + 3</q>
    <a>9</a>
  </qa>
  <qa>
    <q>3 + 5</q>
    <a>7</a>
  </qa>
</human_check>

C#

public class human_check
{

    public static string get_q()
    {
        try
        {
            string h = string.Empty;
            Random rnd = new Random();
            XDocument questions = XDocument.Load(@"C:\Users\PETERS\Desktop\human_check.xml");
            var random_q = from q in questions.Descendants("qa")
                           select new
                           {
                               question = q.Descendants("q").OrderBy(r => rnd.Next()).First().Value
                           };

            foreach (var rq in random_q)
            {
                h = rq.question.ToString();
            }

            return h;

        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

}

前もって感謝します、

EP

4

2 に答える 2

4

順序を設定する代わりに、ランダムな要素を選択できます。

var qas = questions.Descendants("qa");
int qaCount = qas.Count();
h = qas.ElementAt(rnd.Next(0, qaCount - 1)).Element("q").Value;
于 2012-09-19T02:59:44.293 に答える
3
var random_q = (from q in questions.Descendants("qa")
                select q).OrderBy(r => rnd.Next()).First();

h = random_q.Descendants("q").SingleOrDefault().Value.ToString();
于 2012-09-19T02:52:20.483 に答える