在 CSS 中,我们可以使用 text-transform: capitalize; 使每个首字母大写。我有一个数据表,我想让每列中的每个第一个字母都大写。我如何执行文本转换:大写为 sql 数据表?(我使用 c# 作为后面的代码)这是我的代码..
public void myfunction(DataSet ds)
{
DataTable myTable = ds.Tables[0];
// and now have to transform each first letter capital for
// all the columns in this table..
}
提前致谢!