When I save a variable that containing an Enum type in wp7 (C#) I receive an Exception, the meaning is that enum is a not known type so the system cannot serialize.
for example
public enum videoType:int {
LongVideo=1,
ShortVideo }
or
public enum video
{
LongVideo,ShortVideo
}
_videoType = videoType.ShortVideo
PhoneApplicationService.Current.State["myType"]
someone tell me to use Datacontract and data member but seems not available in wp7
so how save a enum type?