J
John Roberts
Hi,
Does anyone know the link to the CF v1.0 SP3 QFE for Platform Builder 5.0?
I have followed links to it from the archive but the links are now defunct.
On a different note, I'm sure I read somewhere that the CLR stores one copy
of identical strings such that:
lock("a")
{
}
could potentially block another thread that is also locking the same string.
Is that true?
If so, does it apply to string literals only or also to dynamically created
strings? For example:
string a = "a" + "b";
lock(a)
{
}
TIA,
- John
Does anyone know the link to the CF v1.0 SP3 QFE for Platform Builder 5.0?
I have followed links to it from the archive but the links are now defunct.
On a different note, I'm sure I read somewhere that the CLR stores one copy
of identical strings such that:
lock("a")
{
}
could potentially block another thread that is also locking the same string.
Is that true?
If so, does it apply to string literals only or also to dynamically created
strings? For example:
string a = "a" + "b";
lock(a)
{
}
TIA,
- John