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 7703647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T23:30:25+00:00 2026-05-31T23:30:25+00:00

I have an ordered list like this: var list = new List<String>(){aaa,aab,aac,baa,bab,bac}; I want

  • 0

I have an ordered list like this:

var list = new List<String>(){"aaa","aab","aac","baa","bab","bac"};

I want to cut the list in half and reverse the order of the halves, while retaining the order of the two sub lists. The only way I can think of doing that is like this:

var list = new List<String>() { "aaa", "aab", "aac", "baa", "bab", "bac" };
int index = list.IndexOf("aac");
var tempList = new List<String>(list.GetRange(index, list.Count - index));
tempList.AddRange(list.GetRange(0, index));
list = tempList;

This takes 5 lines and a temporary variable, and doesn’t look very nice.

Is there a neater way to do this? I thought that it should be possible with Linq, but most of those methods don’t seem to care about the order of the underlying list.

Any ideas?

  • 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-31T23:30:26+00:00Added an answer on May 31, 2026 at 11:30 pm

    This is probably shorter, but it might be slower:

     var list = new List<String> { "aaa", "aab", "aac", "baa", "bab", "bac" };
     var index = list.IndexOf("aac");
     var r = list.Skip(index).Concat(list.Take(index)).ToList();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have an ordered list that I want to markup using the new
I have this code: List<string> lineList = new List<string>(); in j = 0; Dictionary<string,
I have an ordered list in HTML. I would like to add styling only
I have a nested oredered list which i m animating using this code... var
So I have a list of numbers in python in a list like this
I have an ordered list of integers, and would like to search through them.
I have a selector like this: $list = $('ul.sortable'); for jQueryUI's sortable plugin. There
I have four level data structure defined like this: Dictionary<Type1, Dictionary<Type2, Dictionary<Type3, List<Type4>>>> The
I have a nested ordered list with this structure <ol> <li> <span>A</span> <ol class=childol>
I have a requirement to sort some strings that contain data like this: var

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.