Click here to Skip to main content
15,902,275 members
Home / Discussions / C#
   

C#

 
AnswerRe: Ok Mr Tom Pin
Tom Deketelaere16-Jan-09 4:52
professionalTom Deketelaere16-Jan-09 4:52 
QuestionCaching Method Pin
satsumatable16-Jan-09 0:27
satsumatable16-Jan-09 0:27 
AnswerRe: Caching Method Pin
Steve Hansen16-Jan-09 2:58
Steve Hansen16-Jan-09 2:58 
QuestionBinding two datasets to gridview in windows application. Pin
shaik abdul gani15-Jan-09 23:49
shaik abdul gani15-Jan-09 23:49 
QuestionPrint an arrays by coulms Pin
newbie_15-Jan-09 23:19
newbie_15-Jan-09 23:19 
QuestionRe: Print an arrays by coulms Pin
CPallini15-Jan-09 23:36
mveCPallini15-Jan-09 23:36 
AnswerRe: Print an arrays by coulms Pin
SeMartens15-Jan-09 23:41
SeMartens15-Jan-09 23:41 
GeneralRe: Print an arrays by coulms Pin
J a a n s15-Jan-09 23:52
professionalJ a a n s15-Jan-09 23:52 
GeneralRe: Print an arrays by coulms Pin
SeMartens15-Jan-09 23:58
SeMartens15-Jan-09 23:58 
GeneralRe: Print an arrays by coulms [modified] Pin
newbie_15-Jan-09 23:58
newbie_15-Jan-09 23:58 
Questionhow can i suppress Microsoft .NET security warning. [modified] Pin
Dattatraya K15-Jan-09 23:09
Dattatraya K15-Jan-09 23:09 
AnswerRe: how can i suppress Microsoft .NET security warning. Pin
SeMartens15-Jan-09 23:17
SeMartens15-Jan-09 23:17 
GeneralRe: how can i suppress Microsoft .NET security warning. Pin
Dattatraya K15-Jan-09 23:20
Dattatraya K15-Jan-09 23:20 
GeneralRe: how can i suppress Microsoft .NET security warning. Pin
SeMartens15-Jan-09 23:35
SeMartens15-Jan-09 23:35 
GeneralRe: how can i suppress Microsoft .NET security warning. Pin
Dave Kreskowiak16-Jan-09 4:01
mveDave Kreskowiak16-Jan-09 4:01 
QuestionProgramatically setting the smtp server in Outlook 2003 Pin
WritinCode15-Jan-09 22:51
WritinCode15-Jan-09 22:51 
AnswerRe: Programatically setting the smtp server in Outlook 2003 Pin
campurr3-Apr-10 5:44
campurr3-Apr-10 5:44 
QuestionSynchronization via Locks Pin
the_jat15-Jan-09 21:57
the_jat15-Jan-09 21:57 
AnswerRe: Synchronization via Locks Pin
SeMartens15-Jan-09 22:18
SeMartens15-Jan-09 22:18 
GeneralRe: Synchronization via Locks Pin
the_jat15-Jan-09 22:44
the_jat15-Jan-09 22:44 
GeneralRe: Synchronization via Locks Pin
N a v a n e e t h15-Jan-09 22:48
N a v a n e e t h15-Jan-09 22:48 
lock is a syntactic sugar for Monitor.Enter and Monitor.Exit.

From the doc

Use Enter to acquire the Monitor on the object passed as the parameter. If another thread has executed an Enter on the object, but has not yet executed the corresponding Exit, the current thread will block until the other thread releases the object.

the_jat wrote:
I think the nutshell author was wrong when he said that the lock protected the variables


I don't think so. When the variable modification is done inside a lock block, it is thread safe.


GeneralRe: Synchronization via Locks Pin
the_jat15-Jan-09 22:57
the_jat15-Jan-09 22:57 
AnswerRe: Synchronization via Locks [modified] Pin
Luc Pattyn16-Jan-09 1:53
sitebuilderLuc Pattyn16-Jan-09 1:53 
AnswerRe: Synchronization via Locks Pin
CPallini15-Jan-09 22:21
mveCPallini15-Jan-09 22:21 
GeneralRe: Synchronization via Locks Pin
the_jat15-Jan-09 22:32
the_jat15-Jan-09 22:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.