ネイティブの変換関数を使用せずに 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?
}
上記は機能していないようです。お知らせ下さい。