当我重视变化时:
i =(非典型值)
然后
bool callback(int i) target = i; return true;
在C#中,如何在变量时获取变量的值而不使用线程或定时器
private int _i = 0; public int i { get { return _i; } set { if (_i == value) { return; } _i = value; callback(value); } }