Click here to Skip to main content
15,913,854 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: Which runtimes are required Pin
Abhinav S3-May-10 19:33
Abhinav S3-May-10 19:33 
Questionneed clarification about gacutil.exe Pin
prasadbuddhika2-May-10 23:24
prasadbuddhika2-May-10 23:24 
AnswerRe: need clarification about gacutil.exe Pin
Peace ON2-May-10 23:51
Peace ON2-May-10 23:51 
AnswerRe: need clarification about gacutil.exe Pin
Abhinav S3-May-10 7:54
Abhinav S3-May-10 7:54 
AnswerRe: need clarification about gacutil.exe Pin
prasadbuddhika6-May-10 0:54
prasadbuddhika6-May-10 0:54 
QuestionHow to add launch condition for my deployment to insure that the required registry tree exists in client machine i.e AutoCAD 2008 or higher version is installed ? Pin
TARAK NATH ROY2-May-10 21:34
TARAK NATH ROY2-May-10 21:34 
QuestionJquery in asp.net Pin
siya patel2-May-10 4:53
siya patel2-May-10 4:53 
AnswerRe: Jquery in asp.net Pin
Pete O'Hanlon2-May-10 5:26
mvePete O'Hanlon2-May-10 5:26 
Questionhttp Basic authentication(RFC2617) Pin
kunaltilak29-Apr-10 20:27
kunaltilak29-Apr-10 20:27 
AnswerRe: http Basic authentication(RFC2617) Pin
T M Gray3-May-10 7:44
T M Gray3-May-10 7:44 
GeneralRe: http Basic authentication(RFC2617) Pin
The Man from U.N.C.L.E.4-May-10 3:29
The Man from U.N.C.L.E.4-May-10 3:29 
QuestionMessage Removed Pin
29-Apr-10 4:52
professionalN_tro_P29-Apr-10 4:52 
AnswerRe: lock Pin
Luc Pattyn29-Apr-10 4:55
sitebuilderLuc Pattyn29-Apr-10 4:55 
GeneralMessage Removed Pin
29-Apr-10 5:02
professionalN_tro_P29-Apr-10 5:02 
GeneralRe: lock Pin
Luc Pattyn29-Apr-10 5:07
sitebuilderLuc Pattyn29-Apr-10 5:07 
GeneralMessage Removed Pin
29-Apr-10 5:38
professionalN_tro_P29-Apr-10 5:38 
GeneralRe: lock Pin
Luc Pattyn29-Apr-10 5:48
sitebuilderLuc Pattyn29-Apr-10 5:48 
GeneralMessage Removed Pin
29-Apr-10 5:50
professionalN_tro_P29-Apr-10 5:50 
GeneralRe: lock PinPopular
Luc Pattyn29-Apr-10 5:57
sitebuilderLuc Pattyn29-Apr-10 5:57 
GeneralMessage Removed Pin
29-Apr-10 6:07
professionalN_tro_P29-Apr-10 6:07 
GeneralRe: lock Pin
Covean29-Apr-10 6:23
Covean29-Apr-10 6:23 
GeneralRe: lock Pin
Alex Manolescu29-Apr-10 11:34
Alex Manolescu29-Apr-10 11:34 
GeneralRe: lock Pin
Dave Kreskowiak29-Apr-10 7:01
mveDave Kreskowiak29-Apr-10 7:01 
Because there are situations where you need one lock to cover operations on multiple objects.

There are also cases where you will be returning the object that you put the lock on. Since you just passed the object to an outside caller, the caller can now try to lock on that object as well, but it'll hang since there's already a lock there.

To avoid problems such as these, you would normally use a seperate lock object than the objects your are actually working with.

A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008
But no longer in 2009...




GeneralRe: lock Pin
Covean29-Apr-10 6:13
Covean29-Apr-10 6:13 
GeneralRe: lock Pin
supercat929-Apr-10 9:11
supercat929-Apr-10 9:11 

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.