Đây là một hàm sẽ đặt hàm xử lý sự kiện mới ở bất cứ đâu bạn muốn trong danh sách lệnh gọi đa điểm.
private void addDelegateAt(ref YourDelegate initial, YourDelegate newHandler, int position)
{
Delegate[] subscribers = initial.GetInvocationList();
Delegate[] newSubscriptions = new Delegate[subscribers.Length + 1];
for (int i = 0; i < newSubscriptions.Length; i++)
{
if (i < position)
newSubscriptions[i] = subscribers[i];
else if (i==position)
newSubscriptions[i] = (YourDelegate)newHandler;
else if (i > position)
newSubscriptions[i] = subscribers[i-1];
}
initial = (YourDelegate)Delegate.Combine(newSubscriptions);
}
Sau đó, bạn luôn có thể xóa hàm bằng dấu '- =' ở bất kỳ nơi nào thuận tiện trong mã của bạn.
Tái bút - Tôi không thực hiện bất kỳ xử lý lỗi nào đối với tham số 'position'.