Is there an alternative to AppDomain.GetAssemblies on portable library?

笑着哭i 提交于 2019-11-29 02:00:45

You can use platform hooks:

In your portable library:

using System.Collections.Generic;

namespace PCL {
  public interface IAppDomain {
    IList<IAssembly> GetAssemblies();
  }

  public interface IAssembly {
    string GetName();
  }

  public class AppDomainWrapper {
    public static IAppDomain Instance { get; set; }
  }
}

and you can access them (in your portable library) like:

AppDomainWrapper.Instance.GetAssemblies();

In your platform-dependent application you'll need to implement it:

public class AppDomainWrapperInstance : IAppDomain {
  IList<IAssembly> GetAssemblies() {
    var result = new List<IAssembly>();
    foreach (var assembly in System.AppDomain.CurrentDomain.GetAssemblies()) {
      result.Add(new AssemblyWrapper(assembly));
    }
    return result;
  }
}

public class AssemblyWrapper : IAssembly {
  private Assembly m_Assembly;
  public AssemblyWrapper(Assembly assembly) {
    m_Assembly = assembly;
  }

  public string GetName() {
    return m_Assembly.GetName().ToString();
  }
}

and bootstrap it

AppDomainWrapper.Instance = new AppDomainWrapperInstance();
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!