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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T16:49:22+00:00 2026-05-19T16:49:22+00:00

I have an object with primitive and complex properties. I have to get property

  • 0

I have an object with primitive and complex properties.

I have to get property values by reflection.

I use this statements:

Dim propertyInfo As PropertyInfo = MYITEM.GetType().GetProperty("MyProp1")
Dim propertyValue As Object = propertyInfo.GetValue(MYITEM, Nothing)

and it’ok, but if I use the same code with complex property like this…

Dim propertyInfo As PropertyInfo = MYITEM.GetType().GetProperty("MyProp1.MyProp2")
Dim propertyValue As Object = propertyInfo.GetValue(MYITEM, Nothing)

the propertyInfo is null and I can’t read the value of “MyProp2”.

Exist an generic method to do this?

  • 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-19T16:49:22+00:00Added an answer on May 19, 2026 at 4:49 pm

    MyProp1.MyProp2 is not a property of your base object, MyProp1 is a property of that then MyProp2 is a property of the object returned by MyProp1.

    Try this :

    Dim propertyInfo1 As PropertyInfo = MYITEM.GetType().GetProperty("MyProp1") 
    Dim propertyValue1 As Object = propertyInfo.GetValue(MYITEM, Nothing) 
    
    Dim propertyInfo2 As PropertyInfo = propertyValue1.GetType().GetProperty("MyProp2") 
    Dim propertyValue2 As Object = propertyInfo2.GetValue(propertyValue1, Nothing) 
    

    You could try something like this extension method (sorry its in c#)

    public static TRet GetPropertyValue<TRet>(this object obj, string propertyPathName)
        {
            if (obj == null)
            {
                throw new ArgumentNullException("obj");
            }
    
            string[] parts = propertyPathName.Split('.');
            string path = propertyPathName;
            object root = obj;
    
            if (parts.Length > 1)
            {
                path = parts[parts.Length - 1];
                parts = parts.TakeWhile((p, i) => i < parts.Length-1).ToArray();
                string path2 = String.Join(".", parts);
                root = obj.GetPropertyValue<object>(path2);
            }
    
            var sourceType = root.GetType();
            return (TRet)sourceType.GetProperty(path).GetValue(root, null);
    
        }
    

    Then to test

    public class Test1
    {
        public Test1()
        {
            this.Prop1 = new Test2();
        }
        public Test2 Prop1 { get; set; }
    }
    
    
    public class Test2
    {
        public Test2()
        {
            this.Prop2 = new Test3();
        }
        public Test3 Prop2 { get; set; }
    }
    
    public class Test3
    {
        public Test3()
        {
            this.Prop3 = DateTime.Now.AddDays(-1); // Yesterday
        }
        public DateTime Prop3 { get; set; }
    }
    

    Usage

    Test1 obj = new Test1();
    var yesterday = obj.GetPropertyValue<DateTime>("Prop1.Prop2.Prop3");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have object A which in turn has a property of type Object B
Why there is primitive type for integer(int) even though we have an object for
I have an object that is mapped to a cookie as a serialized base-64
I have an object graph serialized to xaml. A rough sample of what it
I have an object in a multi-threaded environment that maintains a collection of information,
I have an object of the type System.Drawing.Image and want to make every pixel
I have an object of class F. I want to output the contents of
I have an object that implements IDisposable that is registered with the Windsor Container
I have an object that needs a test if the object data is valid.
I have an object, that is facing a particular direction with (for instance) a

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.