排序列表使用 LINQ 在子类内部

发布于 2024-11-09 09:23:05 字数 938 浏览 0 评论 0原文

我知道我可以像这样对列表进行排序

var result = List<T>.OrderBy(value => value.property);

但是假设我有这样的东西

    class Stock
    {
        public Guid ID { get; set; }
        public string Description { get; set; }
    }

    class StockList : List<Stock>
    {
        public enum SomeEnum
        {
            SomeOtherValue = 0,
            SomeOtherOtherValue
        }
        //What if I want method like this using LINQ?
        public void Sort(SomeEnum sortBy)
        {
            switch (sortBy) 
            {
                case SomeValue.SomeOtherOtherValue:
                    //Sort one way
                    break;
                case SomeValue.SomeOtherValue:
                    //Sort another
                    break;
            }
        }
    }

this.OrderBy() (并且我假设其他 LINQ 扩展)返回一个 OrderedCollection 并且似乎不影响原来的。所以我认为我的处理方式是错误的?

I know I can sort a list doing something like this

var result = List<T>.OrderBy(value => value.property);

But lets say I have something like this

    class Stock
    {
        public Guid ID { get; set; }
        public string Description { get; set; }
    }

    class StockList : List<Stock>
    {
        public enum SomeEnum
        {
            SomeOtherValue = 0,
            SomeOtherOtherValue
        }
        //What if I want method like this using LINQ?
        public void Sort(SomeEnum sortBy)
        {
            switch (sortBy) 
            {
                case SomeValue.SomeOtherOtherValue:
                    //Sort one way
                    break;
                case SomeValue.SomeOtherValue:
                    //Sort another
                    break;
            }
        }
    }

this.OrderBy() (and I assume the other LINQ extentions) return an OrderedCollection and doesn't seem to affect the original. So I assume I'm going about this the wrong way?

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

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

发布评论

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

评论(2

2024-11-16 09:23:05

您可以使用List.Sort( )。这将对列表进行就地排序。

You can use List.Sort( ). This will do an in-place sort of the list.

时间海 2024-11-16 09:23:05

你可以做

this.Sort(new Comparison<Stock>((x,y) => x.Description.CompareTo(y.Description)));

You can do

this.Sort(new Comparison<Stock>((x,y) => x.Description.CompareTo(y.Description)));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文