Search Issue Tracker
Won't Fix
Votes
6
Found in
3.2.0f1
Issue ID
389311
Regression
No
Dictionary<,> is not AOT'ed when embedded in a generic class.
This issue has no description.
Comments (2)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- SystemInfo.get_graphicsDeviceName() is generating garbage GC Alloc when using Metal graphics API
- Crash on D3D12CommonShader::ApplyGpuProgram when attaching material which samples "_UnityFBInput0" to "Full Screen Pass Renderer Feature" Component
- SpeedTree meshes and objects count differs when comparing the numbers in the Player with the Editor
- Model and Prefab Preview icons are not updated after upgrading associated Materials to URP
- Game view is rendered white when viewing the Editor with HDR display and Post Proccesing is enabled on the Main Camera with 2D URP
junk1er
Jun 27, 2014 10:28
https://bugzilla.xamarin.com/show_bug.cgi?id=5316
Smilediver
Nov 19, 2013 13:17
Workaround is to add the Dictionary in question with specific types to a dummy class, and use those methods that are not AOT'ed. This will force correct AOT'ing. For example:
public class Dummy {
Dictionary<Test, int> foo = new Dictionary<Test, int>();
}