public List<int> GetListIntKey(int keys)
{
int j;
List<int> t;
t = new List<int>();
int i;
for (i = 0; ; i++)
{
j = GetKey((keys + i).ToString());
if (j == null)
{
break;
}
else
{
t.Add(j);
}
}
if (t.Count == 0)
return null;
else
return t;
}
的問題是上線:
j = GetKey((keys + i).ToString());
我收到提示說:
無法隱式轉換類型「字符串」到「廉政」
現在GetKey
功能是字符串類型:
public string GetKey(string key)
{
}
我該怎麼辦?
此問題詢問有關將int轉換爲字符串的問題,但您已經想清楚了,並且該錯誤消息是關於將字符串轉換爲int的。 – hvd
請修改您的問題並更正其標題。問題是關於字符串到整數轉換,而不是整數到字符串。 – daniloquio
我喜歡大多數正確的答案是downvoted。 – jrummell