這就是你使用的Func定義,無法繼續下去是因為...
請先參考MSDN:System.Delegate 文中Remarks底下的第一個Note下的說明:
The common language runtime provides each delegate type with BeginInvoke and EndInvoke methods, to enable asynchronous invocation of the delegate.
簡單說,這是Common Language Runtime自動幫delegate加上的方法,沒有原始碼,所以你按下F12,最多就是看到Func的定義,底下沒有了...
你可以去.NET Core的原始碼裡面追追看:CoreCLR
以上...