我正在学习 C# 编程,想知道是否可以将 12 个字母长的字符串的值输出到一个有 12 列的表中,每列将有一个标签,将显示字符串的一个字母在
问问题
77 次
2 回答
1
当然。只需迭代角色并做任何你想做的事情。它会像这样:
// create an instance of your table, whatever it may be.
// create an instance of a row
// add row to your table
var line = "hello world";
foreach (var letter in line)
{
// create an instance of a column
// add column to your row
// add label to your column
// set text property of lable = letter
}
于 2012-12-07T19:25:12.043 回答
0
看看 String.Format 方法:http: //msdn.microsoft.com/en-us/library/system.string.format.aspx
于 2012-12-07T19:22:53.417 回答