Obfuscation does not obfuscate Enums

I just saw that the obfuscation does not mangle the Enum names
Code:

type Forms = public enum(ClaimedCustomers, CurrentCustomers,FreeCustomersCold, FreeCustomersHot);

Is decompiled to (C#):

public enum h
{
ClaimedCustomers,
CurrentCustomers,
FreeCustomersCold,
FreeCustomersHot
}

Thanks, logged as bugs://82922

bugs://82922 got closed with status fixed.

1 Like