hello i have create an property with type enum
- public propkey mykey
- {
- get
- {
- return this.myKeyField;
- }
- set
- {
- this.myKeyField = value;
- }
- }
and i deserialize a xml to object that contain mykey as property but i want to get it as string before assign to enum. how can i do that ?

Jignesh KumarPosted Jan 9, 2020, 9:05 AM
Ashutosh GuptaPosted Jan 9, 2020, 4:47 AM