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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:11:08+00:00 2026-05-25T20:11:08+00:00

I am doing something like the answer on: Set object property using reflection Dynamically

  • 0

I am doing something like the answer on:
Set object property using reflection

Dynamically setting the value of a object property. I have a function wrapping this sort of functionality and it works great. However, I want to make it so that it looks at the property type to see if it is some sort of collection and add the value/object to the collection.

I tried to do something like: if (object is ICollection) The problem is that VS2010 wants me to type the collection which I dont know how to do programatically.

So what I want to do is something like the following given subject is the target object and value is value to be set:

public void setPropertyOnObject(object subject, string Name, object value)
{
  var property = subject.GetType().GetProperty(Name)
  // -- if property is collection ??
  var collection = property.GetValue(subject, null);
  collection.add(value)
  // -- if propert is not a collection
  property.SetValue(subject, value, null);
}
  • 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-25T20:11:09+00:00Added an answer on May 25, 2026 at 8:11 pm

    You can dynamically check a typed collection (and add an item to it) thusly:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Reflection;
    using System.Text;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                Object subject = new HasList();
                Object value = "Woop";
                PropertyInfo property = subject.GetType().GetProperty("MyList", BindingFlags.GetProperty | BindingFlags.Instance | BindingFlags.Public);
                var genericType = typeof (ICollection<>).MakeGenericType(new[] {value.GetType()});
                if (genericType.IsAssignableFrom(property.PropertyType))
                    genericType.GetMethod("Add").Invoke(property.GetValue(subject, null), new[] { value });
            }
        }
    
        internal class HasList
        {
            public List<String> MyList { get; private set; }
            public HasList()
            {
                MyList = new List<string>();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am doing something like this: class Class(object): def __init__(self): self.var=#new instance name string#
Assume you are doing something like the following List<string> myitems = new List<string> {
Right now I'm doing something like this: RewriteRule ^/?logout(/)?$ logout.php RewriteRule ^/?config(/)?$ config.php I
Not that I'm doing something like that, but I am kind of interested how
I'm doing something like the following: SELECT * FROM table WHERE user='$user'; $myrow =
Currently I'm doing something like this in markup <input type=text ONKEYPRESS=InputNumeric(event); id=txtNumber /> But
I'm doing something like this: @protocol CallbackDelegate -(void) performCallback; @end @interface MyObject : NSObject
If you are doing something like the following: var i = $('input[@name=some_field]'); if (i.val()
I'm currently doing something like this in some code I'm working on right now:
Imagine I am doing something like this: void *p = malloc (1000); *((char*)p) =

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.