C
Cool Guy
In the following, is the volatile write *guaranteed* to happen before Bar()
is called?
class Test
{
volatile string t;
public void Foo() {
t = "test";
Bar();
}
}
is called?
class Test
{
volatile string t;
public void Foo() {
t = "test";
Bar();
}
}