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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:40:35+00:00 2026-05-22T02:40:35+00:00

In the code below, the two lists are joined on Index. But either list

  • 0

In the code below, the two lists are joined on Index. But either list could have more items than the other and i just want to join up to the list with the least items and throw the rest out from the other list. So, if list 1 has 5 items and list 2 has 7 items, I want to join both up to item 5, and ignore list 2’s remaining items. (and vice versa)

var joinLbxs = lbxShtCols.Items
    .Cast<ListItem>()
    .Select((xlFldList, index) => new
    {
        xlFldList,
        tblFldList = lbxSqlTablesCols.Items[index]
    });
  • 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-22T02:40:35+00:00Added an answer on May 22, 2026 at 2:40 am

    As @Steven suggested in a comment, if you are using .Net 4.0, use the Zip() method. If you don’t, you could use MoreLinq to provide the same functionality.

    Or you could do it yourself (assuming both lists are IList<T> and have fast indexer):

    from i in Enumerable.Range(0, new[] { list1.Count, list2.Count }.Min())
    select new
    {
        item1 = list1[i],
        item2 = list2[i]
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I Have written such a code below and I will pass two lists to
Hi I have really problem with merging two lists in such code like mergesort
I have a JSF page with two forms (pseudo-code below). First form is for
In the code below I tried in two ways to access the parent version
In the code below I use mpf_add to add the string representation of two
The code below works. But if I comment out the line Dim objRequest As
I have two drop down lists on a page. The behavior is as follows:
Despite the fact that my JDO query contains TWO declareParameters statements, the code below
On top of visual studio code editor, There are two drop down lists displays
I want a list of items that can display either an item's 'greek' or

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.