C# 4 动态关键字 - 如何设置自定义属性

发布于 2024-10-21 21:25:21 字数 316 浏览 1 评论 0原文


我应该在以下函数中更改什么才能使其编译并正常工作?

private void Test()
{
    dynamic dyn;
    dyn.Prop1 = 'A';
    dyn.Prop2 = "asdfsdf";
    dyn.Prop3 = 5;
    foreach (PropertyInfo propertyInfo in dyn.GetType().GetProperties())
    {
        Console.WriteLine(propertyInfo.Name);
    }
}

提前致谢!

What should I change in the following function for it to compile and work properly?

private void Test()
{
    dynamic dyn;
    dyn.Prop1 = 'A';
    dyn.Prop2 = "asdfsdf";
    dyn.Prop3 = 5;
    foreach (PropertyInfo propertyInfo in dyn.GetType().GetProperties())
    {
        Console.WriteLine(propertyInfo.Name);
    }
}

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

☆獨立☆ 2024-10-28 21:25:21

您可能正在寻找 ExpandoObject

要查看有哪些属性,请使用以下命令(摘自 MSDN):

dynamic employee = new ExpandoObject();
employee.Name = "John Smith";
employee.Age = 33;

foreach (var property in (IDictionary<String, Object>)employee)
{
    Console.WriteLine(property.Key + ": " + property.Value);
}

You are probably looking for ExpandoObject.

To see what properties there are use this (taken from MSDN):

dynamic employee = new ExpandoObject();
employee.Name = "John Smith";
employee.Age = 33;

foreach (var property in (IDictionary<String, Object>)employee)
{
    Console.WriteLine(property.Key + ": " + property.Value);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文