-
Notifications
You must be signed in to change notification settings - Fork 896
Open
Labels
bugSomething isn't workingSomething isn't working
Description
例如
public class SoftwareVersion : BasePoco
{
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 测试工程中会被赋值
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working