私はこのコードを持っています:
using System;
using System.Runtime.Remoting.Messaging;
class Program {
static void Main(string[] args) {
new Program().Run();
Console.ReadLine();
}
void Run() {
Action example = new Action(threaded);
IAsyncResult ia = example.BeginInvoke(new AsyncCallback(completed), null);
// Option #1:
/*
ia.AsyncWaitHandle.WaitOne();
try {
example.EndInvoke(ia);
}
catch (Exception ex) {
Console.WriteLine(ex.Message);
}
*/
}
void threaded() {
throw new ApplicationException("Kaboom");
}
void completed(IAsyncResult ar) {
// Option #2:
Action example = (ar as AsyncResult).AsyncDelegate as Action;
try {
example.EndInvoke(ar);
}
catch (Exception ex) {
Console.WriteLine(ex.Message);
}
}
}
多くの記事では、私が呼び出すとBeginInvoke
、すべてException
のs(ここではメソッドからthreaded
)は私が呼び出すまで待機し、EndInvoke
そこにスローされます。しかし、それは機能せず、Exception
( "Kaboom")は "未処理"であり、プログラムがクラッシュします。手伝って頂けますか?
ありがとう!