Код: Выделить всё
if (objCfg.strIOMask.ToLower().StartsWith("0x")) {
objCfg.strIOMask = objCfg.strIOMask.Substring(2);
}
Что-то вроде:
Код: Выделить всё
public String strIOMask {
get;
set {
if (value.ToLower().StartsWith("0x")) {
value = value.Substring(2);
}
}
}
Код: Выделить всё
Severity Code Description Project File Line Suppression State
Error (active) CS8652 The feature 'field keyword' is currently in Preview and *unsupported*. To use Preview features, use the 'preview' language version. NewHMIProject Module.cs 156
Подробнее здесь: https://stackoverflow.com/questions/797 ... assignment
Мобильная версия