gpt4 book ai didi

c# - 我如何在 C# 中显示每个循环到文本框?

转载 作者:太空宇宙 更新时间:2023-11-03 23:18:35 24 4
gpt4 key购买 nike

我在显示循环代码的结果时遇到问题,这是我的代码

    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);
}
}

但它没有出现在文本框中,有什么帮助吗?

最佳答案

每次循环都会覆盖框中的文本。

如果您想要文本框中的最终字符串,您的循环应该构建一个字符串,然后在循环完成后,将最终字符串放入您的文本框中。

关于c# - 我如何在 C# 中显示每个循环到文本框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36313863/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com