OmarElabd / ObjectExporter

Object Exporter lets you export out an object while debugging in Visual Studio, the object can be serialized in either C#, JSON or XML.
GNU General Public License v3.0
263 stars 83 forks source link

Add Support for Enums #22

Open OmarElabd opened 9 years ago

OmarElabd commented 9 years ago

For Xml and JSON this may involve getting the int value of the Enum.

For C#: This will involve setting the Enum value, which will require testing the property to determine if it is an Enum. This information can not be retrieved or deduced from the Expression, hence it will have to be determined from the Type.

Testing for enums may result in performance degradation.