暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IAssemblyWrapper.cs 287B

12345678910111213
  1. using System;
  2. using System.Reflection;
  3. namespace UnityEngine.TestTools.Utils
  4. {
  5. internal interface IAssemblyWrapper
  6. {
  7. Assembly Assembly { get; }
  8. AssemblyName Name { get; }
  9. string Location { get; }
  10. AssemblyName[] GetReferencedAssemblies();
  11. }
  12. }