Negative Vorzeichen bei VOR

This commit is contained in:
2025-10-12 22:41:13 +02:00
parent 9864c1965f
commit ec4d7dc26e
45 changed files with 76 additions and 13 deletions

View File

@ -11,5 +11,12 @@ public enum VarType {
// Unsigned integers (alternative names)
USINT = 10, UINT = 11, UDINT = 12, ULINT = 13,
// Floating point
REAL = 14, LREAL = 15
REAL = 14, LREAL = 15,
// Date/time types
TIME = 16, // Zeitdauer -> TimeSpan
DATE = 17, // Datum -> DateTime
TIME_OF_DAY = 18, // Tageszeit (TOD) -> TimeSpan / DateTime
TOD = TIME_OF_DAY,
DATE_AND_TIME = 19,// Datum + Uhrzeit (DT) -> DateTime
DT = DATE_AND_TIME
}