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 289B

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