pry před 2 roky
rodič
revize
0e4af67208
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. +4
    -3
      BPASmartClient.S7Net/EntityClassResolution.cs

+ 4
- 3
BPASmartClient.S7Net/EntityClassResolution.cs Zobrazit soubor

@@ -219,14 +219,15 @@ namespace BPASmartClient.S7Net
break;
default:
{
//if (propertyType.IsClass) numBytes += 2;
object obj2 = Activator.CreateInstance(propertyType);
numBytes = FromBytes(obj2, bytes, numBytes);

numBytes = Math.Ceiling(numBytes);
if (numBytes / 2.0 - Math.Floor(numBytes / 2.0) > 0.0)
{
numBytes += 1.0;
}
object obj2 = Activator.CreateInstance(propertyType);
numBytes = FromBytes(obj2, bytes, numBytes);

obj = obj2;
break;
}


Načítá se…
Zrušit
Uložit