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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:27:55+00:00 2026-05-16T16:27:55+00:00

I understand that Delegates offer high performance reflection maybe just 15% slower than regular

  • 0

I understand that Delegates offer high performance reflection maybe just 15% slower than regular explicit c# code. However all the examples I can find on stackoverflow are based on prior knowledge of the type of a method/property being accessed via a delegate.

Given such prior knowledge of a class, why resort to reflected Delegate access in the first place?

Anyhow the reflection coding task I face is how to implement high performance property get/set access for an unknown list of class properties where just a class type name is supplied at runtime? I can code the basics of reflection inspection to produce a list of properties but how do I wire up a set of Delegate based accessors for a potentially random set of property types?

Assuming the property types are limited to a range of basic DB column types is the answer a case statement that returns a:

Func<int> or Func<string> etc? 

Edit-1: I am limited to .Net 3.5

  • 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-16T16:27:56+00:00Added an answer on May 16, 2026 at 4:27 pm

    This solution uses expression trees since they’re fairly easy to compose, and they provide the handy Compile() method to get an actual Delegate upon which you can invoke. I made the Func actually take in the object (so Func<T, TResult> rather than just Func<TResult>) so you can obtain the property value from any instance.

    Edit: Added setter implementation as well.

    public class MyClass
    {
        public string MyStringProperty { get; set; }
    }
    
    class Program
    {
        static void Main(string[] args)
        {
            PropertyInfo propertyInfo = typeof(MyClass).GetProperty("MyStringProperty");
            Delegate getter = CreateGetter(propertyInfo);
            Delegate setter = CreateSetter(propertyInfo);
            object myClass = new MyClass();
            setter.DynamicInvoke(myClass, "Hello");
            Console.WriteLine(getter.DynamicInvoke(myClass));
        }
    
        public static Delegate CreateGetter(PropertyInfo property)
        {
            var objParm = Expression.Parameter(property.DeclaringType, "o");
            Type delegateType = typeof(Func<,>).MakeGenericType(property.DeclaringType, property.PropertyType);
            var lambda = Expression.Lambda(delegateType, Expression.Property(objParm, property.Name), objParm);
            return lambda.Compile();
        }
    
        public static Delegate CreateSetter(PropertyInfo property)
        {
            var objParm = Expression.Parameter(property.DeclaringType, "o");
            var valueParm = Expression.Parameter(property.PropertyType, "value");
            Type delegateType = typeof(Action<,>).MakeGenericType(property.DeclaringType, property.PropertyType);
            var lambda = Expression.Lambda(delegateType, Expression.Assign(Expression.Property(objParm, property.Name), valueParm), objParm, valueParm);
            return lambda.Compile();
        }
    }
    

    Prints out “Hello” by first using the dynamic setter to set it to “Hello” and then using the dynamic getter to obtain the property from the object.

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

Sidebar

Ask A Question

Stats

  • Questions 512k
  • Answers 512k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer As already said in your other question, XAMPP does. May 16, 2026 at 5:35 pm
  • Editorial Team
    Editorial Team added an answer First you should understand that what is AJAX Ajax is… May 16, 2026 at 5:35 pm
  • Editorial Team
    Editorial Team added an answer You need to define what this is when it executes,… May 16, 2026 at 5:35 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

What is the Java equivalent of Cocoa delegates? (I understand that I can have
Hey, I'm looking for useful resources about Delegates. I understand that the delegate sits
The way I understand gcc, /usr/bin/gcc (and other bits related to gcc, like ld)
In the last couple of days I asked a couple of questions about delegates
I'm hoping to clear some things up with anonymous delegates and lambda expressions being
As a fairly junior developer, I'm running into a problem that highlights my lack
I have a piece of code for some validation logic, which in generalized for
Okay, I understand how to work delegation in a modal view to send a
I have a NSURLConnection that receives data output from a url pointing to a
I have two entity objects one that holds billing address information(TBLADDRESS) and one that

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.