Click here to Skip to main content
15,892,697 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to make owner data file? Pin
Dave Kreskowiak21-Jan-06 12:02
mveDave Kreskowiak21-Jan-06 12:02 
QuestionAutoSave Pin
pxp21-Jan-06 5:19
pxp21-Jan-06 5:19 
AnswerRe: AutoSave Pin
WillemM21-Jan-06 6:05
WillemM21-Jan-06 6:05 
GeneralRe: AutoSave Pin
pxp21-Jan-06 7:03
pxp21-Jan-06 7:03 
GeneralRe: AutoSave Pin
Guffa21-Jan-06 10:05
Guffa21-Jan-06 10:05 
GeneralRe: AutoSave Pin
pxp22-Jan-06 1:44
pxp22-Jan-06 1:44 
GeneralRe: AutoSave Pin
pxp22-Jan-06 4:24
pxp22-Jan-06 4:24 
GeneralRe: AutoSave Pin
WillemM22-Jan-06 20:16
WillemM22-Jan-06 20:16 
GeneralRe: AutoSave Pin
WillemM22-Jan-06 20:19
WillemM22-Jan-06 20:19 
GeneralRe: AutoSave Pin
pxp23-Jan-06 9:07
pxp23-Jan-06 9:07 
GeneralRe: AutoSave Pin
Guffa24-Jan-06 1:27
Guffa24-Jan-06 1:27 
GeneralRe: AutoSave Pin
pxp24-Jan-06 3:40
pxp24-Jan-06 3:40 
AnswerRe: AutoSave Pin
Guffa24-Jan-06 23:01
Guffa24-Jan-06 23:01 
GeneralRe: AutoSave Pin
karizmaguy200722-Feb-10 2:01
karizmaguy200722-Feb-10 2:01 
QuestionXML: why use Encoding ? Pin
pxp21-Jan-06 4:40
pxp21-Jan-06 4:40 
AnswerRe: XML: why use Encoding ? Pin
Guffa21-Jan-06 10:15
Guffa21-Jan-06 10:15 
GeneralRe: XML: why use Encoding ? Pin
pxp22-Jan-06 1:52
pxp22-Jan-06 1:52 
QuestionC# equiv. of Java synchronized keyword Pin
J4amieC21-Jan-06 3:16
J4amieC21-Jan-06 3:16 
Hi, im looking at some Java code and im assuming that the synchronized keyword is pretty similar to the lock keyword in C#? Anyone able to confirm that?

In addition I think this code is replicating some of the .NET System.Threading.Monitor class, but again I am unsure. How would I replicate this code with the use of lock keyword and Monitor class?

This is some example Java of what im looking at. What is the equiv of the .notify() method below in the .NET Monitor Class? Im pretty sure .wait() is erm... Wait()
private Object unsafeLoaderMonitor = new Object();<br />
public void DoSomething()<br />
{<br />
   // some code<br />
   synchronized (unsafeLoaderMonitor) <br />
   {<br />
   	unsafeLoaderMonitor.notify();<br />
   }<br />
   // some code<br />
}<br />
<br />
public void DoSomethingElse()<br />
{<br />
   synchronised(unsafeLoaderMonitor)<br />
   {<br />
     unsafeLoadMonitor.Wait(100000);<br />
   }<br />
}

AnswerRe: C# equiv. of Java synchronized keyword Pin
Ravi Bhavnani21-Jan-06 4:43
professionalRavi Bhavnani21-Jan-06 4:43 
AnswerRe: C# equiv. of Java synchronized keyword Pin
Judah Gabriel Himango21-Jan-06 14:38
sponsorJudah Gabriel Himango21-Jan-06 14:38 
QuestionAxiom 3d engine problems Pin
psycokara21-Jan-06 3:01
psycokara21-Jan-06 3:01 
AnswerRe: Axiom 3d engine problems Pin
Dave Kreskowiak21-Jan-06 11:50
mveDave Kreskowiak21-Jan-06 11:50 
QuestionHow to pass a complex object to a web service Pin
sergestusxx21-Jan-06 2:09
sergestusxx21-Jan-06 2:09 
GeneralRe: How to pass a complex object to a web service Pin
Guffa21-Jan-06 2:34
Guffa21-Jan-06 2:34 
GeneralRe: How to pass a complex object to a web service Pin
sergestusxx21-Jan-06 2:36
sergestusxx21-Jan-06 2:36 

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.