1
になっていない私のコード -AsyncResultクラスは、ここでは、コールバック関数
DateTimeDelegate dtdel = new DateTimeDelegate(GetCurrentDateTimeAt);
IAsyncResult async = dtdel.BeginInvoke(UserContext.Latitude.ToString(), UserContext.Longitude.ToString(), new AsyncCallback(DateTimeCallBack), null);
...
public DateTimeCallBack(IAsyncResult asy)
{
AsyncResult result = (AsyncResult)asy; // error 'AsyncResult' could not be found
}
私は何をすべき?