You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public byte? Major { get; set; }
public string sMajor => Major == null ? "FF" : Major.ToString();
public byte? Minor { get; set; }
public string sMinor => Minor == null ? "FF" : Minor.ToString();
}
sMajor 在Test 测试工程中会被赋值
The text was updated successfully, but these errors were encountered:
例如
public class SoftwareVersion : BasePoco
{
}
sMajor 在Test 测试工程中会被赋值
The text was updated successfully, but these errors were encountered: