e.g.,
C#
lock (x)
{
}
C++/CLI:
System::Threading::Monitor::Enter(x);
try
{
}
finally
{
System::Threading::Monitor::Exit(x);
}
--
David Anton
www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C#/VB to C++ converter
Instant Python: C#/VB to Python converter
[quoted text, click to view] "Tao" wrote:
> hi.. Group,
>
> is there any lock statement like C# in managed C++?
>
> thanks
>
>