If you try to Translate this Snippet:
struct _PowerFlags
{
ULONG64 PreservedDuringStandby : 1;
ULONG64 PreservedDuringHibernate : 1;
ULONG64 PartiallyPreservedDuringHibernate : 1;
ULONG64 Reserved : 61;
} PowerFlags;
It will make the Assistant unresponsive and it will consume all of your memory.
Issue from Thu, 28 Jun 2012 11:59:09 GMT Originally opened at https://clrinterop.codeplex.com/workitem/10275
If you try to Translate this Snippet: struct _PowerFlags { ULONG64 PreservedDuringStandby : 1; ULONG64 PreservedDuringHibernate : 1; ULONG64 PartiallyPreservedDuringHibernate : 1; ULONG64 Reserved : 61; } PowerFlags; It will make the Assistant unresponsive and it will consume all of your memory.