如何修复 CS1503 参数 1:无法从 'string' 转换为 'System.Type'?

How to fix CS1503 Argument 1: cannot convert from 'string' to 'System.Type'?

我在 .net framework class 库项目中有这段代码,我想重用它 in.net 标准 class 库项目。它按预期工作,但在 .net 标准项目中出现编译错误。

public FxLogger(string logger)
{
    ILog AppLogger = LogManager.GetLogger(logger);

错误:

CS1503  Argument 1: cannot convert from 'string' to 'System.Type'

两个应用程序中的 log4net 版本 2.0.8 我可以在 LogManager class

中看到这些方法声明
public static ILog GetLogger(string repository, string name);
public static ILog GetLogger(Assembly repositoryAssembly, Type type);
public static ILog GetLogger(string repository, Type type);
public static ILog GetLogger(Type type);
public static ILog GetLogger(Assembly repositoryAssembly, string name);

尝试

 ILog AppLogger = LogManager.GetLogger(Assembly.GetCallingAssembly(),logger);

貌似.net framework方法定义为

public static ILog GetLogger(string name)
{
    return GetLogger(Assembly.GetCallingAssembly(), name);
}