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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:31:32+00:00 2026-06-03T06:31:32+00:00

I have seen various ways of doing this including reflection, component model type descriptors,

  • 0

I have seen various ways of doing this including reflection, component model type descriptors, expression trees, and aspects, BUT I’m still not sure whether the code below achieves all of the following objectives using .Net 4.0 or higher:

  1. Be type safe, refactor friendly (no magic strings), and readable
  2. Maximize performance over multiple calls
  3. Provide the name of a property
  4. Provide the value of the property

How can the code be improved?

protected void NotifyOfPropertyChanging<TProperty>(Expression<Func<TProperty>> property) {
    var memberExpression = (MemberExpression)property.Body;
    var prop = (PropertyInfo) memberExpression.Member;

    var propertyName = prop.Name;
    var value = prop.GetValue(this, null);

    // fire INPC using propertyName
    // use value and name to do IsDirty checking
}
  • 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-03T06:31:34+00:00Added an answer on June 3, 2026 at 6:31 am

    You might be able to improve performance by compiling the expression tree and caching it for future use rather than calling GetValue every time. However such optimizations should only be made if your current implementation causes a bottleneck.

    void NotifyOfPropertyChanging<TProperty>(Expression<Func<TProperty>> property)
    {
        var memberExpression = (MemberExpression) property.Body;
        var prop = (PropertyInfo) memberExpression.Member;
    
        Func<TProperty> accessor;
        if (!TypedAccessorCache<TProperty>.Cache.TryGetValue(prop, out accessor))
        {
            accessor = property.Compile();
            TypedAccessorCache<TProperty>.Cache[prop] = accessor;
        }
        var value = accessor();
    
        // ...
    }
    
    static class TypedAccessorCache<TProperty>
    {
        public static readonly IDictionary<PropertyInfo, Func<TProperty>> Cache =
            new Dictionary<PropertyInfo, Func<TProperty>>();
    }
    

    Notice I’ve used a generic static type to hold the cache dictionary instance. This is a handy way to effectively create a separate typed cache for each distinct property type.

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

Sidebar

Related Questions

I have seen various questions on multi-site and multi-host Django, including subdomains and specific
I have seen various answers around helping explain adding records in one-to-many relationships but
Quite some time i`ve learnt MVC. I have seen various techniques to post data
I have seen config files(yes, text files) for various console applications that look like
I have seen this question about deploying to WebSphere using the WAS ant tasks.
I have seen many articles about POCO. What is this?
Here's a question you may have seen around the 'nets in various forms...summed up
I have searched through StackOverflow and have seen various topics on how to do
In various hash table implementations, I have seen magic numbers for when a mutable
I've seen various examples use this and I'm curious to know, is it dangerous

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.