<tfoot id='6QrlM'></tfoot>

  1. <small id='6QrlM'></small><noframes id='6QrlM'>

        <bdo id='6QrlM'></bdo><ul id='6QrlM'></ul>
    1. <i id='6QrlM'><tr id='6QrlM'><dt id='6QrlM'><q id='6QrlM'><span id='6QrlM'><b id='6QrlM'><form id='6QrlM'><ins id='6QrlM'></ins><ul id='6QrlM'></ul><sub id='6QrlM'></sub></form><legend id='6QrlM'></legend><bdo id='6QrlM'><pre id='6QrlM'><center id='6QrlM'></center></pre></bdo></b><th id='6QrlM'></th></span></q></dt></tr></i><div id='6QrlM'><tfoot id='6QrlM'></tfoot><dl id='6QrlM'><fieldset id='6QrlM'></fieldset></dl></div>
    2. <legend id='6QrlM'><style id='6QrlM'><dir id='6QrlM'><q id='6QrlM'></q></dir></style></legend>

      无法将 lambda 表达式转换为类型“System.Delegate",因为它不是委托类型?

      Cannot convert lambda expression to type #39;System.Delegate#39; because it is not a delegate type?(无法将 lambda 表达式转换为类型“System.Delegate,因为它不是委托类型?)

      <small id='GpTp2'></small><noframes id='GpTp2'>

        • <bdo id='GpTp2'></bdo><ul id='GpTp2'></ul>
        • <i id='GpTp2'><tr id='GpTp2'><dt id='GpTp2'><q id='GpTp2'><span id='GpTp2'><b id='GpTp2'><form id='GpTp2'><ins id='GpTp2'></ins><ul id='GpTp2'></ul><sub id='GpTp2'></sub></form><legend id='GpTp2'></legend><bdo id='GpTp2'><pre id='GpTp2'><center id='GpTp2'></center></pre></bdo></b><th id='GpTp2'></th></span></q></dt></tr></i><div id='GpTp2'><tfoot id='GpTp2'></tfoot><dl id='GpTp2'><fieldset id='GpTp2'></fieldset></dl></div>

                <tbody id='GpTp2'></tbody>
            1. <legend id='GpTp2'><style id='GpTp2'><dir id='GpTp2'><q id='GpTp2'></q></dir></style></legend>

            2. <tfoot id='GpTp2'></tfoot>
                本文介绍了无法将 lambda 表达式转换为类型“System.Delegate",因为它不是委托类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我遇到了一个我似乎无法弄清楚的问题,尽管这是 Stackoverflow 上的一个标准问题.

                I'm having a problem that I can't seem to figure out, although its kind of a standard question here on Stackoverflow.

                我正在尝试使用以下代码异步更新我的 Bing 地图(请注意,这是来自旧的 Silverlight 项目,似乎不适用于 WPF)

                I'm trying to update my Bing Maps asynchronously using the following code (mind you, this is from an old Silverlight project and does not seem to work in WPF)

                _map.Dispatcher.BeginInvoke(() =>
                {
                    _map.Children.Clear();
                    foreach (var projectedPin in pinsToAdd.Where(pin => PointIsVisibleInMap(pin.ScreenLocation, _map)))
                    {
                        _map.Children.Add(projectedPin.GetElement(ClusterTemplate));
                    }
                });
                

                我做错了什么?

                推荐答案

                您必须将其显式转换为 Action 才能转换为 System.Delegate开始吧.

                You have to cast it explicitly to a Action in order for the conversion to System.Delegate to kick in.

                即:

                _map.Dispatcher.BeginInvoke((Action)(() =>
                {
                    _map.Children.Clear();
                    foreach (var projectedPin in pinsToAdd.Where(pin => PointIsVisibleInMap(pin.ScreenLocation, _map)))
                    {
                        _map.Children.Add(projectedPin.GetElement(ClusterTemplate));
                    }
                }));
                

                这篇关于无法将 lambda 表达式转换为类型“System.Delegate",因为它不是委托类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
                Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
                How to store delegates in a List(如何将代表存储在列表中)
                How delegates work (in the background)?(代表如何工作(在后台)?)
                C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
                Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)

                <small id='kn57T'></small><noframes id='kn57T'>

                  <bdo id='kn57T'></bdo><ul id='kn57T'></ul>

                    <i id='kn57T'><tr id='kn57T'><dt id='kn57T'><q id='kn57T'><span id='kn57T'><b id='kn57T'><form id='kn57T'><ins id='kn57T'></ins><ul id='kn57T'></ul><sub id='kn57T'></sub></form><legend id='kn57T'></legend><bdo id='kn57T'><pre id='kn57T'><center id='kn57T'></center></pre></bdo></b><th id='kn57T'></th></span></q></dt></tr></i><div id='kn57T'><tfoot id='kn57T'></tfoot><dl id='kn57T'><fieldset id='kn57T'></fieldset></dl></div>
                    <legend id='kn57T'><style id='kn57T'><dir id='kn57T'><q id='kn57T'></q></dir></style></legend>
                      <tbody id='kn57T'></tbody>

                        <tfoot id='kn57T'></tfoot>