csharp C#动态对象嵌套成员调用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp C#动态对象嵌套成员调用相关的知识,希望对你有一定的参考价值。

using System;
using System.Dynamic;
namespace WW.COM.Framework.WWConfiguration
{
    public class EnvSettings : DynamicObject
    {
        private string Category { get; set; }

        public EnvSettings()
        {
            Category = String.Empty;
        }
        public EnvSettings(string category)
        {
            if (!string.IsNullOrEmpty(category))
                Category = category;
            else
                Category = String.Empty;
        }
        public override bool TryGetMember(GetMemberBinder binder, out object result)
        {
            string propName = binder.Name;
            if (!string.IsNullOrEmpty(Category))
            {
                propName = Category + "." + binder.Name;
            }                        
            result = EnvConfiguration.Settings[propName]; /*Code to get property value and will return null if property does not exists*/
            if (result == null)
            {
                result = new EnvSettings(propName); /*For Nested call*/
               
            }
            return result == null ? false : true;           
        }
    }    
}

以上是关于csharp C#动态对象嵌套成员调用的主要内容,如果未能解决你的问题,请参考以下文章

嵌套类的值初始化

面向对象---成员,嵌套(建模)

为向量中的所有对象动态调用 C++ 类成员

ASP.NET Core 1.1 使用 C# 动态编译缺少编译器需要成员“Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create”

C# 使用字符串数组中的嵌套对象动态创建 JSON

C和C++是不是都可以函数嵌套调用,但是不能函数嵌套定义?