我需要在我的 MySQL 结果“,”中替换“。”
string.Replace(",", ".");
当前代码:
mysql.Connection.Open();
mysql.Command.CommandText = query;
mysql.Reader = mysql.Command.ExecuteReader();
string new_ = String.Empty;
while (mysql.Reader.Read())
{
/*
foreach(var field in mysql.Reader)
{
// what i do here?
}
*/
// here i have code to add to TextBox value
}
我不知道如何替换...我尝试了一些类似 field = string 的替换,但 Visual Studio 无法使用此代码。