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

  • Home
  • SEARCH
  • 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 9234073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T06:42:15+00:00 2026-06-18T06:42:15+00:00

I declare following object List<string> list = {Kate, John, Paul, Eve, Hugo}; I would

  • 0

I declare following object

List<string> list = {"Kate", "John", "Paul", "Eve", "Hugo"};

I would like to move “Eve” at front of my list? How can I do that. I must not to reorder other elements!
At output I want to get this

"Eve", "Kate", "John", "Paul", "Hugo"
  • 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-06-18T06:42:16+00:00Added an answer on June 18, 2026 at 6:42 am
    list.Remove("Eve");  // Removes the first "Eve" element in the list
    list.Insert(0, "Eve");  // Inserts "Eve" at the first position in the list
    

    However, if your list contains multiple “Eve”s, calling Remove(“Eve”) will only remove the first occurrence of “Eve”.

    And you have to know that inserting element at the beginning of a list is an expensive operation. Because all elements already in the list have to be shifted.

    UPDATE

    As @AlvinWong commented, LinkedList<string> is a very good solution to avoid this overhead when inserting an element. The Insert operation is done in O(1) (O(n-i) in a List). The major drawback of LinkedList<string> is that accessing the ith element is an operation in O(i) (O(1) in a List).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have declared the following method: private void mockInvokeDBHandler(Map<String, Object>... rows) { List<Map<String, Object>>
Lets say I declare the following Dictionary<string, string> strings = new Dictionary<string, string>(); List<string>
I have the following as two ways to declare a two dimensional String array.
I have an object that has a KeyValuePair type property. I would like to
Having the following generic class that would contain either string, int, float, long as
List<String> v = new ArrayList<String>(); I understand the generics helps you declare that the
I would like to do the following: public class ImmutableList<T> { public <U super
I have the following code: DECLARE @testDate date --SET @testDate=dateadd(wk, 5830, 0) SET @testDate='2011-09-26
I have the following query: DECLARE @Region VARCHAR(MAX) SET @Region = '' SELECT @Region
Consider following script: SET LANGUAGE 'German' GO SET DATEFIRST 1 GO DECLARE @FullDate DATETIME

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.