Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4594930
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T22:53:51+00:00 2026-05-21T22:53:51+00:00

I have a build version list List<int[]> BuildVersions; How can i find last build

  • 0

I have a build version list

List<int[]> BuildVersions;

How can i find last build version.

Build Versions such as

100.1.2.3
101.12.3.2
101.12.3.3

Update: the expression must check first number then second one,then third one ,then last one

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T22:53:52+00:00Added an answer on May 21, 2026 at 10:53 pm
    int[] maxVersion = buildVersions.OrderByDescending(v => v[0])
                                    .ThenByDescending(v => v[1])
                                    .ThenByDescending(v => v[2])
                                    .FirstOrDefault();
    

    OR a more generic solution is as under

    T[] HierarchicalMax<T>(IEnumerable<T[]> items)
            {
                var length = items.Min(v => v.Length);
                IEnumerable<T[]> result = items;
    
                for (int i = 0; i < length; i++)
                {
                    int offset = i;
                    result = result.OrderByDescending(v => v[offset]);
                }
    
                T[] max = result.FirstOrDefault();
    
                return max;
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been thinking about a regular expression that can transform a list like
I have a project that has several build configurations (FREE version, male-only, female-only, etc.).
I have projects that need to be build with a specific version of the
I have to build OEM versions of a COM library (DLL). Does anyone know
I have a Perl script running on version 5.10 build 1004 of ActiveStates Active
I have built a static version of qt and download a static version of
I have a project built and packaged with a specific version of jsp-apiand servlet-api
I have Flex Builder Professional Ver 3 (Built with Eclipse) version. I need to
VS2008's Setup Projects have a handful of built-in prerequisites (e.g. .NETfx version, VSTO, PowerPacks)
I have build server inside our domain (and it needs to be because it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.