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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:31:49+00:00 2026-05-27T03:31:49+00:00

How do I replace objects in Collection1 with a matching object(by name and description)

  • 0

How do I replace objects in Collection1 with a matching object(by name and description) from Collection2?

Also the objects for the matching operation in Collection2 have to be within a certain range, say from 0-20. Objects with index > 20 in Collection2 need to be appended to Collection1.

  • 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-27T03:31:50+00:00Added an answer on May 27, 2026 at 3:31 am

    This is one way:

    foreach (var item in collection2.Take(20)) // grab replacement range
    {
        int index;
        if ((index = collection1.FindIndex(x => 
                                      x.Name == item.Name && 
                                      x.Description == item.Description)) > -1)
        {
            collection1[index] = item;
        }
    }
    collection1.AddRange(collection2.Skip(20)); // append the rest
    

    It’s highly likely that the code can be improved even more, if your intentions were a little more clear. There may be a cleaner way if the problem was better understood.

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

Sidebar

Related Questions

Suppose I have a user defined type: CREATE OR REPLACE TYPE TEST_TYPE AS OBJECT
I have some types in Oracle. create or replace TYPE r_telefone_cand AS OBJECT (
I have a parent Obj-C object containing (in a collection) a bunch of objects
Is it possible to replace a method of a Moose object at runtime ?
I create a simple type: create or replace TYPE SIMPLE_TYPE AS OBJECT (ID NUMBER(38),
I created a simple Oracle type: create or replace TYPE MY_TYPE AS OBJECT (ID
I've got a chunk of text in a StringBuilder object. I need to replace
I have a collection of objects that I wish to bind to a ListView
I have a List object being accessed by multiple threads. There is mostly one
I've got the following type: create or replace type autocontrole2.DifferentStatesSAC as object ( AUTOCONTROLE_STATUS_CODE_ID

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.