J
jodleren
Hi
I have something like:
public bool Data;
which is fine - but I want so do something when set - is there a
simple solution for that?
public bool Data
{
get { return value ]
set { set value; DoSomething(); }
}
The value could be the same, the only "change" I want is the
"DoSomething"
Is that possible?
I have something like:
public bool Data;
which is fine - but I want so do something when set - is there a
simple solution for that?
public bool Data
{
get { return value ]
set { set value; DoSomething(); }
}
The value could be the same, the only "change" I want is the
"DoSomething"
Is that possible?