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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:35:11+00:00 2026-06-13T17:35:11+00:00

I have 2 instances of the same objects, o1, and o2. If I am

  • 0

I have 2 instances of the same objects, o1, and o2. If I am doing things like

 if (o1.property1 != null) o1.property1 = o2.property1 

for all the properties in the object. What would be the most efficient way to loop through all properties in an Object and do that? I saw people using PropertyInfo to check nulll of the properties but it seems like they could only get through the PropertyInfo collection but not link the operation of the properties.

Thanks.

  • 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-13T17:35:12+00:00Added an answer on June 13, 2026 at 5:35 pm

    You can do this with reflection:

    public void CopyNonNullProperties(object source, object target)
    {
        // You could potentially relax this, e.g. making sure that the
        // target was a subtype of the source.
        if (source.GetType() != target.GetType())
        {
            throw new ArgumentException("Objects must be of the same type");
        }
    
        foreach (var prop in source.GetType()
                                   .GetProperties(BindingFlags.Instance |
                                                  BindingFlags.Public)
                                   .Where(p => !p.GetIndexParameters().Any())
                                   .Where(p => p.CanRead && p.CanWrite))
        {
            var value = prop.GetValue(source, null);
            if (value != null)
            {
                prop.SetValue(target, value, null);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible for two instances of Object to have the same hashCode() ?
I'd like to have multiple instances of CKEditor based on the same config settings,
I have a number of classes doing different things but using the same Singleton
I have similar instances of the same web application running across many domains. I
I have two instances of VS2010 running on same machine.One VS instance has a
I have 3 Oracle database instances with the same data and scheme that I
I have a maven pom.xml file with multiple instances of a same goal defined
I have a need to swap between different DB instances of the same design.
I have everything same in 10.04 LTS, local in parallels 7 On ec2 instances
I've been doing object-oriented programming for most of the past 7 years, using Java

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.