我想這個代碼在轉換爲C#,想知道什麼是等同於JavaScript的「的Array.push」? 下面的代碼我正在轉換的幾行:C#相當於爲Javascript「推」
var macroInit1, macroInit2;
var macroSteps = new Array();
var i, step;
macroInit1 = "Random String";
macroInit2 = "Random String two";
macroSteps.push(macroInit1 + "another random string");
macroSteps.push(macroInit2 + "The last random string");
for (i=0; i<10; i++)
{
for (step = 0; step < macroSteps.length; step++)
{
// Do some stuff
}
}
並使用.Add你在哪裏, d使用推() – 2010-09-19 11:51:34