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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T02:17:12+00:00 2026-05-31T02:17:12+00:00

I want to be able to access property values in an object like a

  • 0

I want to be able to access property values in an object like a dictionary, using the name of the property as a key. I don’t really care if the values are returned as objects, so Dictionary<string, object> is fine. This is the intended usage:

object person = new { Name: "Bob", Age: 45 };
IDictionary<string, object> lookup = new PropertyDictionary(person);
string name = (string)person["Name"];
person["Age"] = (int)person["Age"] + 1; // potentially editable

I was about to implement my own class for this, but then I started noticing classes like DynamicObject implement the IDictionary interface, which made think this was already being done for me somewhere.

What I want is similar to the functionality used by ASP.NET MVC that allows using anonymous types to set HTML tag attributes. I have a lot of classes that use dictionaries as data sources, but most of the time I should be able to pass in objects as well.

Since this is for a general-purpose library, I thought I would create a reusable class that simply decorated an object with the IDictionary interface. It will save me from creating an explosion of overloads.

  • 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-31T02:17:13+00:00Added an answer on May 31, 2026 at 2:17 am

    I don’t believe there is a built-in .Net type like this already in the .Net framework. It seems like you really want to create an object that behaves a lot like a Javascript object. If so then deriving from DynamicObject may be the right choice. It allows you to create an object which when wrapped with dynamic allows you to bind directly obj.Name or via the indexer obj["Name"].

    public class PropertyBag : DynamicObject {
      private object _source;
      public PropertyBag(object source) {
        _source = source;
      }
      public object GetProperty(string name) {  
        var type = _source.GetType();
        var property = type.GetProperty(name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
        return property.GetValue(_source, null);
      }
      public override bool TryGetMember(GetMemberBinder binder, out object result) {
        result = GetProperty(binder.Name);
        return true;
      }
      public override bool TryGetIndex(GetIndexBinder binder, object[] indexes, out object result) {
        result = GetProperty((string)indexes[0]);
        return true;
      }
    }
    

    You can use this to wrap any type and use both the indexer and name syntax to get the properties

    var student = new Student() { FirstName = "John", LastName = "Doe" };
    dynamic bag = new PropertyBag(student);
    Console.WriteLine(bag["FirstName"]);  // Prints: John
    Console.WriteLine(bag.FirstName);     // Prints: John
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to be able to access custom URLs with apache httpclient. Something like
I have some pages that I don't want users to be able to access
I want to be able to look values up by a key in same
Using EF how do i access values in a parent property when accessing a
I want to be able to access a property or member of a class
I want to be able to access some device specific data while running an
I want to be able to access properties from a JSON string within my
I am creating a WebUserControl in ASP.net and want to be able to access
I am dealing with image buffers, and I want to be able to access
I'm importing some XML to C#, and want to be able to access data

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.