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