internal AssemblyNamespaceDefinition(NetAssembly assembly, AssemblyNamespaceDefinition parent, string name) { _assembly = assembly; _parent = parent; _name = name; }
public static void InitializeTestClass(TestContext context) { _mscorlibAssembly = new NetAssembly(typeof(object).Assembly.Location); }
public static void InitializeTestClass(TestContext context) { _mscorlibAssembly = new NetAssembly(typeof(object).Assembly.Location); _consoleType = (TypeDefinition) _mscorlibAssembly.GetScope().ResolveIdentifier("System") .ScopeProvider.GetScope().ResolveIdentifier("Console").ScopeProvider; }