code ~
//字串格式化
using System;
string name="陳先生";
int score=99;
string data=string.Format("{0}的成績是{1}",name,score);
Console.WriteLine(data);
//按下enter繼續....
Console.Read();
出現結果
陳先生的成績是99
全站熱搜
code ~
出現結果
陳先生的成績是99
留言列表