在 Silverlight 中不使用 ArrayList 的理由是什么?

发布于 2024-12-07 19:07:16 字数 356 浏览 0 评论 0原文

我在源代码中遇到了这个代码片段

#if SILVERLIGHT
        internal static System.Collections.IList CreateArrayList()
        {
            return new List<object>();
        }

#else
        internal static System.Collections.IList CreateArrayList()
        {
            return new ArrayList();
        }

#endif

这种不同处理的目的是什么?

I have come across this code snippet in a source code

#if SILVERLIGHT
        internal static System.Collections.IList CreateArrayList()
        {
            return new List<object>();
        }

#else
        internal static System.Collections.IList CreateArrayList()
        {
            return new ArrayList();
        }

#endif

What might be the purpose of this different treatment?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手心的海 2024-12-14 19:07:16

Silverlight 没有已弃用的非泛型集合类;他们不仅感到灰心丧气,而且还感到沮丧。他们根本不在那儿。

该代码的奇怪之处在于:显然它适用于 SilverLight 情况,那么为什么要保留旧代码呢?使用 ArrayList 没有什么明显的好处,不是吗?

Silverlight doesn't have the deprecated non-generic collection classes; they are not merely discouraged; they're not there at all.

What is bizarre about that code is: clearly it works for the SilverLight case, so why leave the old code in at all? There's no compelling benefit to using the ArrayList, is there?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文