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
264 stars 82 forks source link

Add Support for Nullables #21

Closed OmarElabd closed 9 years ago

OmarElabd commented 9 years ago

implemented

pawciut commented 8 years ago

In version 1.2.4 nullable Guids are incorrect. They are present at C# code as "new System.Guid?{ }" without property name to be assigned to.

example:

TypeCode = null, new System.Guid? { }, TypeName = null, Version = null,

pawciut commented 8 years ago

or something like this:

Description = "Status główny", DocumentId Id new System.Guid? { }, new System.Guid? { },

OmarElabd commented 8 years ago

Thanks @pawciut for bringing this to my attention. You are right, they are not being handled correctly. I've created a new issue #43 to address this.