所以,基本上我在练习一些算法。我试图弄清楚为什么当我尝试设置 number[i] 的值时下面的代码会给我一个错误?我知道这可能很简单,但我不知道“为什么”它不起作用。
public int SumOfRandomNumbersWithStrings(string randomness)
{
//Get the value of each index in the array
string number = "";
for (int i = 0; i < randomness.Length; i++)
{
number[i] = randomness[i];
}
//temporarily one until I finish the algorithm
return 1;
}