3 writes to FromAbiArray
PresentationFramework (3)
MS\Internal\WindowsRuntime\Generated\WinRT\Marshalers.cs (3)
1011FromAbiArray = (object box) => (T[])(object)MarshalString.FromAbiArray(box); 1052FromAbiArray = (object box) => MarshalBlittable<T>.FromAbiArray(box); 1070FromAbiArray = (object box) => MarshalNonBlittable<T>.FromAbiArray(box);
4 references to FromAbiArray
PresentationFramework (4)
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IEnumerable.cs (2)
497T[] __items = Marshaler<T>.FromAbiArray((__itemsSize, items)); 598items = Marshaler<T>.FromAbiArray((__items_length, __items_data));
MS\Internal\WindowsRuntime\Generated\WinRT\Projections\IReadOnlyList.cs (2)
308T[] __items = Marshaler<T>.FromAbiArray((__itemsSize, items)); 414items = Marshaler<T>.FromAbiArray((__items_length, __items_data));