gpt4 book ai didi

c# - 在字段/变量中存储类型

转载 作者:太空狗 更新时间:2023-10-29 18:07:33 25 4
gpt4 key购买 nike

如何将类型存储在静态字段中,以便我可以做这样的事情(注意:只是一个例子,在伪代码中)?:

public class Logger
{
public static Type Writer;

public static void SetWriter(Type @new)
{
Writer = @new;
}

public static void Write(string str)
{
Writer.Write(str);
}
}

最佳答案

非常简单:

Type variableName = typeof(SomeTypeName);

Type variableName = someObject.GetType();

不过,不确定这对您实际想做的事情是否有帮助。查看其他答案。

关于c# - 在字段/变量中存储类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11514609/

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