如何将字符串变量放在双引号内
本文关键字:字符串 变量 | 更新日期: 2023-09-27 18:34:00
所以我想从数据库创建一个文本(如日志文件)。每个文本表示用户的记录。显然,根据数据库,每条记录都有不同的名称。我想知道如何在创建文本文件时将字符串变量放在 doubleqoute 中。
public static void createLog()
{
MySqlConnection con = new MySqlConnection();
con.ConnectionString = "SERVER=localhost;DATABASE=s_project;UID=root;PASSWORD='';";SELECT
con.Open();
MySqlCommand thiscommand = con.CreateCommand();
thiscommand.CommandText = "SELECT user_name FROM user_info";
MySqlDataReader read = thiscommand.ExecuteReader();
while (read.Read())
{
string user_name;
user_name = read.GetString("user_name");
StreamWriter SW;
SW = File.CreateText("c:''MyTextFile.txt"); //what should I put instead of MyTextFile if I would like it to be the variable user_name?
}
con.Close();
}
您可以使用
+(字符串连接)运算符。
SW = File.CreateText("c:''" + user_name + ".txt");
如果你开始需要更多变量,String.Format
也可以工作:
SW = File.CreateText(String.Format("c:''{0}.txt", user_name));
它可以更清楚地显示意图。
使用 + 符号
SW = File.CreateText(@"C:'" + user_name + ".txt");