如何将类型存储在静态字段中,以便我可以做这样的事情(注意:只是一个例子,在伪代码中)?:
public class Logger
{
public static Type Writer;
public static void SetWriter(Type @new)
{
Writer = @new;
}
public static void Write(string str)
{
Writer.Write(str);
}
}