gpt4 book ai didi

c# - 如何从引用程序集中的静态类获取字段及其值

转载 作者:IT王子 更新时间:2023-10-29 04:41:22 25 4
gpt4 key购买 nike

我在名为“A7”的引用程序集(名为 “DAL”)中有一个静态类:

A7 像这样:

public static class A7
{
public static readonly bool NeedCoding = false;
public static readonly string Title = "Desc_Title"
public static readonly string F0 = "";
public static readonly string F1 = "Desc_F1";
public static readonly string F2 = "Desc_F2";
public static readonly string F3 = "Desc_F3";
public static readonly string F4 = "Desc_F4";
}

如何从 DAL 程序集 A7 类中获取所有属性名称和值?

谢谢

最佳答案

使用反射,你需要寻找字段;这些不是属性。从下面的代码可以看出,它查找公共(public)静态成员:

class Program
{
static void Main(string[] args)
{
Type t = typeof(A7);
FieldInfo[] fields = t.GetFields(BindingFlags.Static | BindingFlags.Public);

foreach (FieldInfo fi in fields)
{
Console.WriteLine(fi.Name);
Console.WriteLine(fi.GetValue(null).ToString());
}

Console.Read();
}
}

关于c# - 如何从引用程序集中的静态类获取字段及其值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7334067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com