如何创建一个生成随机时间的表单?
按下按钮会产生一个随机时间,再次按下它会产生一个随机时间。
答案 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