pry 2 роки тому
джерело
коміт
0e4af67208
1 змінених файлів з 4 додано та 3 видалено
  1. +4
    -3
      BPASmartClient.S7Net/EntityClassResolution.cs

+ 4
- 3
BPASmartClient.S7Net/EntityClassResolution.cs Переглянути файл

@@ -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;
}


Завантаження…
Відмінити
Зберегти