You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
parent
1190d13a04
commit
6bdd276d05
@ -468,7 +468,12 @@ namespace System.Reflection.Emit
|
||||
|
||||
public static AssemblyBuilder DefineDynamicAssembly (AssemblyName name, AssemblyBuilderAccess access, IEnumerable<CustomAttributeBuilder> assemblyAttributes)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
var ab = DefineDynamicAssembly (name, access);
|
||||
foreach (var attr in assemblyAttributes) {
|
||||
ab.SetCustomAttribute (attr);
|
||||
}
|
||||
|
||||
return ab;
|
||||
}
|
||||
|
||||
public ModuleBuilder DefineDynamicModule (string name)
|
||||
@ -1046,7 +1051,7 @@ namespace System.Reflection.Emit
|
||||
/*Warning, @typeArguments must be a mscorlib internal array. So make a copy before passing it in*/
|
||||
internal Type MakeGenericType (Type gtd, Type[] typeArguments)
|
||||
{
|
||||
return new MonoGenericClass (gtd, typeArguments);
|
||||
return new TypeBuilderInstantiation (gtd, typeArguments);
|
||||
}
|
||||
|
||||
void _AssemblyBuilder.GetIDsOfNames([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId)
|
||||
|
Reference in New Issue
Block a user