0

我完全坚持在这里创建一个随机数。理想情况下,不是同一个号码是客户号码的两倍。

然后我需要在我的 tb_id (文本框)中显示它并将该行写入客户文件。

这里的任何帮助都会很棒。

private void button1_Click(object sender, EventArgs e)
{    
    **var rng = new Random();**
    // Here I need to write the random number (it's a customer number) to the tb_id text box. so I'm able to write it to their customer file afterwards.

    try
    {
        string fileName = string.Format(tb_surname.Text);

        if (tb_firstname.Text == "" || fileName == "" || tb_postcode.Text == "")
        {
            MessageBox.Show("Missing values from textboxes!");
        }
        else if (File.Exists(fileName + "Text"))
        {
            if (MessageBox.Show("Warning: There is already a file with the surname you enter already on the system. Contents will be replaced - do you want to continue?", "File Demo", MessageBoxButtons.YesNo, MessageBoxIcon.Question,
                 MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly) == DialogResult.Yes)
            {
                //write lines of text to file
                StreamWriter outputStream = File.CreateText(fileName + ".Txt");
                outputStream.WriteLine(tb_firstname.Text);
                outputStream.WriteLine(tb_surname.Text);
                outputStream.WriteLine(tb_surname.Text);
                **outputStream.WriteLine(tb_id.Text);**
                outputStream.Close();
                MessageBox.Show("Text saved to file successfully!");
                this.Close();
            }
        }
    }
    // ...
}

第2部分

       // creating a random number here for the customer id
        Guid g = Guid.NewGuid();
        tb_id.Text = g.ToString();

将 Guid 号写入文本文件。

        outputStream.WriteLine(tb_id.Text);
4

3 回答 3

7

如果你想让它对用户来说是唯一的,我不建议使用随机数,很有可能让不同的用户使用相同的数字。

guid 可能是更好的主意

  Guid g = Guid.NewGuid();
于 2013-01-16T18:29:37.097 回答
1

首先,如果您只是使用随机数来识别用户,那么使用 COLD TOLD 所说的 GUID。

独特随机是完全不同的东西


但为了理解如何使用随机数......

声明rng为类型Random

要实际创建随机数,请输入类似

int randI =  ng.Next(0, 1000);

这将为您提供 0 到 1000 之间的随机数。

您可以使用 Intellisence 查看随机数还有哪些其他选项。

将该数字放在您的文本框中,而不是

textBox1.Text = randI.ToString();
于 2013-01-16T18:29:35.213 回答
1

您可以使用引导结构。GUID 是一个全局唯一标识符,它在 .NET 框架中提供

 this.iD = Guid.NewGuid().ToString();
于 2013-01-16T18:29:57.207 回答