How do you add an Enum object to an Android Bundle?
I think convert enum to int (for normal enum) and then set on bundle was been easiest way. like this code for intent:
myIntent.PutExtra("Side", (int)PageType.Fornt);
then for check state:
int type = Intent.GetIntExtra("Side",-1);
if(type == (int)PageType.Fornt)
{
//To Do
}
but not work for all enum type!