字符串以顺序开头

String StartsWith Order

我有一个包含原始数据的 CSV 文件,我试图将其与多个文件匹配,而排序时我需要将帐户代码与其帐户相匹配。

我正在使用 AccountList 并使用 StartsWith 来尝试匹配:

using System;
using System.Linq;
using System.Collections.Generic;

public class Program
{
    public static void Main()
    {
        var accounts = new List<Account> { 
            new Account {
                Id = 9,
                Code = "5-4",
                Name = "Software",
            }, 
            new Account {
                Id = 10,
                Code = "5-4010",
                Name = "Hardware"
            } 
        };

        var hardwareAccount = accounts.FirstOrDefault(x => "5-4010".StartsWith(x.Code));
        Console.WriteLine(hardwareAccount.Name); // Prints Software - Should be Hardware

        var softwareAccount = accounts.FirstOrDefault(x => "5-4020".StartsWith(x.Code));
        Console.WriteLine(softwareAccount.Name); // Prints Software - Correct
    }
}

public class Account {
    public int Id { get; set; }
    public string Code { get; set; }
    public string Name { get; set; }
}

很明显是匹配第一个Account,有没有办法让它按顺序匹配?

更新的解决方案:
谢谢@SirRufo

 class Program
    {
        static void Main(string[] args)
        {
            var accounts = new List<Account>
            {
                new Account
                {
                    Id = 9,
                    Code = "5-4",
                    Name = "Software",
                },
                new Account
                {
                    Id = 10,
                    Code = "5-4010",
                    Name = "Hardware"
                }
            }.OrderBy(x => x.Code.Length);

            var hardwareAccount = accounts.LastOrDefault(x => "5-4010".StartsWith(x.Code));
            Console.WriteLine(hardwareAccount.Name);

            var softwareAccount = accounts.LastOrDefault(x => "5-4020".StartsWith(x.Code));
            Console.WriteLine(softwareAccount.Name);

            Console.ReadKey();
        }
    }

    public class Account
    {
        public int Id { get; set; }
        public string Code { get; set; }
        public string Name { get; set; }
    }

您必须按代码长度对所有比赛进行排序

accounts
    .Where(x => "5-4010".StartsWith(x.Code))
    .OrderBy(x => x.Code.Length)
    .LastOrDefault();