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
- Large Sprite with 9-slice and slice scale start stretching too early
- Windows Player framerate drops significantly when moving the mouse cursor with high polling rate
- 8BitDo controllers are not recognized via the SDL interface when connected in XInput mode on Linux
- Horizontal scroll bar appears in Inspector when selecting a GameObject even though no field requires it
- "An editor should only have 0 or 1 TopView" errors are thrown when pressing “Focus on Player” button multiple times
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>();
}