added startAddress at ReadClass

FalcoGoodbody
2020-09-09 23:29:15 +02:00
parent e06b8829df
commit 27f67813ca

@@ -283,7 +283,7 @@ public class TestClass
```
then add the code to read or write the complete struct
```csharp
// reads a struct from DataBlock 1
// reads a struct from DataBlock 1, startAddress 0
TestClass testClass = new TestClass();
plc.ReadClass(testClass, 1);
plc.ReadClass(testClass, 1, 0);
```