我一定要顯示FO的我循環的代碼,結果出了問題,這是我的代碼如何顯示每個循環到c#中的文本框?
private int n = 689;
private int e = 41;
private int d = 137;
public void enkrip()
{
string text = "indra";
byte[] asciiBytes = Encoding.ASCII.GetBytes(text);
for (int i = 0; i < text.Length; i++)
{
int vout = Convert.ToInt32(asciiBytes[i]);
int c = (int)BigInteger.ModPow(vout, e, n);
char cipher = Convert.ToChar(c);
textBox2.Text = char.ToString(cipher);
}
}
,但它不會出現在文本框,任何幫助嗎?
除了已經給答案,你可以用'cipher.ToString(); '而不是直接從'char'類中調用該方法 –