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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T15:18:48+00:00 2026-06-10T15:18:48+00:00

I want to write a code snippet which does following thing, like if I

  • 0

I want to write a code snippet which does following thing, like if I have a class let’s say MyClass:

   class MyClass
    {
        public int Age { get; set; }
        public string Name { get; set; }
    }

so the snippet should create following method:

 public bool DoUpdate(MyClass myClass)
  {
        bool isUpdated = false;
        if (Age != myClass.Age)
        {
            isUpdated = true;
            Age = myClass.Age;
        }
        if (Name != myClass.Name)
        {
            isUpdated = true;
            Name = myClass.Name;
        }
        return isUpdated;
    }

So the idea is if I call the snippet for any class it should create DoUpdate method and should write all the properties in the way as I have done in the above example.

So I want to know :

  1. Is it possible to do the above ?
  2. If yes how should I start, any guidance ?
  • 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-10T15:18:50+00:00Added an answer on June 10, 2026 at 3:18 pm

    How about a utility method instead:

    public static class MyUtilities
    {
        public static bool DoUpdate<T>(
            this T target, T source) where T: class
        {
            if(target == null) throw new ArgumentNullException("target");
            if(source == null) throw new ArgumentNullException("source");
    
            if(ReferenceEquals(target, source)) return false;
            var props = typeof(T).GetProperties(
                BindingFlags.Public | BindingFlags.Instance);
            bool result = false;
            foreach (var prop in props)
            {
                if (!prop.CanRead || !prop.CanWrite) continue;
                if (prop.GetIndexParameters().Length != 0) continue;
    
                object oldValue = prop.GetValue(target, null),
                       newValue = prop.GetValue(source, null);
                if (!object.Equals(oldValue, newValue))
                {
                    prop.SetValue(target, newValue, null);
                    result = true;
                }
            }
            return result;
        }
    }
    

    with example usage:

    var a = new MyClass { Name = "abc", Age = 21 };
    var b = new MyClass { Name = "abc", Age = 21 };
    var c = new MyClass { Name = "def", Age = 21 };
    
    Console.WriteLine(a.DoUpdate(b)); // false - the same
    Console.WriteLine(a.DoUpdate(c)); // true - different
    
    Console.WriteLine(a.Name); // "def" - updated
    Console.WriteLine(a.Age);
    

    Note that this could be optimized hugely if it is going to be used in a tight loop (etc), but doing so requires meta-programming knowledge.

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

Sidebar

Related Questions

Is it possible to write code template or a snippet which will do following:
I want to write to short code snippet in python, to determine which version
I want write a little code analyzer which parses nested structures and translates into
I have a problem; I want to write a java code for sending an
I have written the following code to write a file on my local file
I have a sample code snippet below which works just fine (I trimmed the
I want to write clean code. So When writing a method I want to
I want to write a code to backup my Sql Server 2008 Database using
I want to write a php code that can search for multiple keywords separated
I want to write a java code that executes some Linux command: String cmd

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.