Namespace rename #1

Merged
koma merged 2 commits from NamespaceRenaming into develop 2022-12-08 14:02:34 +00:00
Showing only changes of commit fece29b071 - Show all commits

View File

@ -83,7 +83,7 @@ public static class Serializer
if (value is null) if (value is null)
return; return;
var enumerable = property.GetValue(value) as IEnumerable; var enumerable = property is not null ? property.GetValue(value) as IEnumerable : value as IEnumerable;
if (enumerable is null) if (enumerable is null)
return; return;