我正在尝试使用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。你有什么想法我怎么能把它分成两个文本框?第一个是大象,另一个是描述?
答案 0 :(得分:2)
result.AppendFormat(@"{0} | {1}", reader["Word"], reader["Description"]);
仅作为建议,您可能希望对实现idisposable
的每个对象使用using语句