我只是想在窗口关闭时注销,但由于异步调用,它是不可能的。没有进行同步通话,有没有办法做到这一点?
public static int[] RowSums(int[,] arr2D)
{
int numRows = arr2D.GetLength(0);
int numColumns = arr2D.GetLength(1);
int[] sums = new int[numRows];
for (int row = 0; row < numRows; ++row)
{
for (int col = 0; col < numColumns; ++col)
{
sums[row] += arr2D[row, col];
}
}
return sums;
}
事件在窗口刷新时工作正常,但窗口关闭时没有。