在不使用本机转换函数的情况下将 int 转换为字符串的最有效代码是什么。
public static void Main(string[] args)
{
string y = Convert(990);
Console.WriteLine(y);
Console.ReadLine();
}
public static string Convert(int x)
{
char[] Str = new char[20];
int i = 0;
while (x != 0)
{
Str[i++] = x % 10 + '0';
x = x / 10;
}
return Str.ToString();// How do I handle this without the native function?
}
以上似乎不起作用。请指教。