G
Guest
Hi
I am a new pie to Visual Stadio 2005 C# NETCF 2.0
I have a property call
public bool Name
{
get
{
return this.name;
}
set
{
this.name = value;
}
}
Cause there is a couple of thread will access this method, So I want to
synchronized this variable, but I do not how to lock it.
I have found a solution call ReadwriterLock, but it does not support NETCF2.0
How to write this function?
Thanks
I am a new pie to Visual Stadio 2005 C# NETCF 2.0
I have a property call
public bool Name
{
get
{
return this.name;
}
set
{
this.name = value;
}
}
Cause there is a couple of thread will access this method, So I want to
synchronized this variable, but I do not how to lock it.
I have found a solution call ReadwriterLock, but it does not support NETCF2.0
How to write this function?
Thanks