表单应用程序-如何创建在C#中生成随机时间的表单

时间:2018-12-15 10:45:17

标签: c#

如何创建一个生成随机时间的表单?

按下按钮会产生一个随机时间,再次按下它会产生一个随机时间。

2 个答案:

答案 0 :(得分:2)

引用npm后,您可以在空白控制台应用程序中执行以下操作:

class Program
    {
        static void Main(string[] args)
        {
            int[][] values = new int[5][];
            values[0]= new int[] { 1, 32, 1024 };
            values[1] = new int[] { 2, 64, 2048 };
            values[2] = new int[] { 4, 128, 4096 };
            values[3] = new int[] { 8, 256, 8192 };
            values[4] = new int[] { 16, 512, 16384 };

            int[] result = values[0]; 

            for(int i = 1; i < values.GetLength(0); i++)
            {
                result = Multiply2Arrays(result, values[i]);
            }
        }

        private static int[] Multiply2Arrays(int[] array1, int[] array2)
        {
            int[] result = new int[array1.Length * array2.Length];
            int counter = 0;
            for (int i = 0; i < array1.Length; i++)
            {
                for (int j = 0; j < array2.Length; j++)
                {
                    result[counter] = array1[i] + array2[j];
                    counter++;
                }
            }
            return result;
        }
    }

答案 1 :(得分:1)

假设您有名为{{1}的Label和名为label1的{​​{1}},其中有Button个事件增强器称为button1。然后像这样定义Click方法的主体:

button1_Click