-4

我试图使用 c# 在 asp .net 中创建刽子手游戏,但由于我是这个领域的初学者,所以我被卡住了。

这是我到目前为止所做的:

public static string GetRandomWords()
{
    string query = string.Format("SELECT TOP 1 Word, Description FROM Hangman ORDER BY NEWID()");

    StringBuilder result = new StringBuilder();
    try
    {
        conn.Open();
        command.CommandText = query;

        SqlDataReader reader = command.ExecuteReader();

        while (reader.Read())
        {
            result.Append(reader["Word"].ToString());
            result.Append(reader["Description"].ToString());
        }
        reader.Close();
    }
    finally
    {
        conn.Close();
    }
    return result.ToString();
}

现在这给了我一个看起来像这样的字符串:ElephantHugeanimal。你知道我怎么能把它分成两个文本框吗?第一个是大象,另一个是描述?

4

1 回答 1

2
result.AppendFormat(@"{0} | {1}", reader["Word"], reader["Description"]);

只是为了建议,您可能希望对每个实现可处置的对象使用 using 语句

于 2013-05-19T23:57:19.183 回答