1 write to Method
System.Private.TypeLoader (1)
Internal\Runtime\TypeLoader\GenericDictionaryCell.cs (1)
506cell = new GvmDispatchCell() { Method = method };
9 references to Method
System.Private.TypeLoader (9)
Internal\Runtime\TypeLoader\GenericDictionaryCell.cs (9)
119if (Method.IsCanonicalMethod(CanonicalFormKind.Any)) 122builder.RegisterForPreparation(Method.OwningType); 123foreach (var type in Method.Instantiation) 131dispatchCell->OwningType = builder.GetRuntimeTypeHandle(Method.OwningType).ToIntPtr(); 132dispatchCell->Handle = Method.NameAndSignature.Handle; 133dispatchCell->IsAsyncVariant = Method.AsyncVariant; 135MethodTable** instantiation = (MethodTable**)MemoryHelpers.AllocateMemory(sizeof(MethodTable*) * Method.Instantiation.Length); 136for (int i = 0; i < Method.Instantiation.Length; i++) 138instantiation[i] = (MethodTable*)builder.GetRuntimeTypeHandle(Method.Instantiation[i]).Value;