Browse Source

Bugfix with empty except arrays

master
Daniel Gyulai 4 years ago
parent
commit
7a854a6583
  1. 6
      CoviDok/BLL/PropertyCopier.cs

6
CoviDok/BLL/PropertyCopier.cs

@ -10,7 +10,11 @@ namespace CoviDok.BLL
{ {
public static void Copy(T source, T dest, string[] except = null) public static void Copy(T source, T dest, string[] except = null)
{ {
List<string> forbidden = new List<string>(except); List<string> forbidden = new List<string>();
if (except != null)
{
forbidden.AddRange(except);
}
PropertyInfo[] properties = source.GetType().GetProperties(); PropertyInfo[] properties = source.GetType().GetProperties();
foreach (var property in properties) foreach (var property in properties)
{ {

Loading…
Cancel
Save