在C#中,如何在变量没有线程或定时器时获取变量的值

前端之家收集整理的这篇文章主要介绍了在C#中,如何在变量没有线程或定时器时获取变量的值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
int i = 0;

当我重视变化时:

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);
    }
}
原文链接:https://www.f2er.com/csharp/99913.html

猜你在找的C#相关文章