No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AssemblyLoadProxy.cs 303B

12345678910111213
  1. using System;
  2. using System.Reflection;
  3. namespace UnityEngine.TestTools.Utils
  4. {
  5. internal class AssemblyLoadProxy : IAssemblyLoadProxy
  6. {
  7. public IAssemblyWrapper Load(string assemblyString)
  8. {
  9. return new AssemblyWrapper(Assembly.Load(assemblyString));
  10. }
  11. }
  12. }