在这种情况下,如何格式化两个字符串 Data Somma

 SqlConnection con = new SqlConnection(strConnString);
    con.Open();
    str = "select * from Pagamenti ORDER BY [Data] DESC";
    com = new SqlCommand(str, con);
    sqlda = new SqlDataAdapter(com);
    ds = new DataSet();
    sqlda.Fill(ds, "Pagamenti");

    for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
    {
        DropDownList1.Items.Add(ds.Tables[0].Rows[i]["Id"] +
            "   --|--   " + ds.Tables[0].Rows[i]["Data"].ToString() +
            "   --|--   " + ds.Tables[0].Rows[i]["Somma"]);
    }
    con.Close();

ToString() 不带任何东西,我分别需要“dd/MM/yyyy”和“R#.###”。

最佳答案

我猜这是因为返回值的类型是 object ,它确实没有参数。

尝试将对象转换为正确的类型并再次调用 ToString

像这样:

Convert.ToDateTime(ds.Tables[0].Rows[i]["Data"]).ToString("dd/MM/yyyy")

或者让 string.Format 处理它:
string.Format("{0:dd/MM/yyyy}", ds.Tables[0].Rows[i]["Data"])

关于c# - 格式化对象 ToString,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21283516/

10-13 03:40