3 references to Allocate
mscorlib (3)
system\collections\generic\arraysorthelper.cs (2)
117
defaultArraySortHelper = (IArraySortHelper<T>)RuntimeTypeHandle.
Allocate
(typeof(GenericArraySortHelper<string>).TypeHandle.Instantiate(new Type[] { typeof(T) }));
895
defaultArraySortHelper = (IArraySortHelper<TKey, TValue>)RuntimeTypeHandle.
Allocate
(typeof(GenericArraySortHelper<string, string>).TypeHandle.Instantiate(new Type[] { typeof(TKey), typeof(TValue) }));
system\rttype.cs (1)
5522
Object instance = RuntimeTypeHandle.
Allocate
(this);