Click here to Skip to main content
15,922,894 members
Home / Discussions / C#
   

C#

 
AnswerRe: Custom Events Pin
Christian Graus11-Dec-08 12:44
protectorChristian Graus11-Dec-08 12:44 
AnswerRe: Custom Events Pin
User 433002811-Dec-08 15:02
User 433002811-Dec-08 15:02 
AnswerRe: Custom Events Pin
DaveyM6912-Dec-08 2:25
professionalDaveyM6912-Dec-08 2:25 
GeneralRe: Custom Events Pin
PIEBALDconsult12-Dec-08 3:06
mvePIEBALDconsult12-Dec-08 3:06 
GeneralRe: Custom Events Pin
DaveyM6912-Dec-08 3:11
professionalDaveyM6912-Dec-08 3:11 
GeneralRe: Custom Events Pin
PIEBALDconsult12-Dec-08 12:50
mvePIEBALDconsult12-Dec-08 12:50 
GeneralRe: Custom Events Pin
DaveyM6913-Dec-08 0:02
professionalDaveyM6913-Dec-08 0:02 
GeneralRe: Custom Events Pin
PIEBALDconsult13-Dec-08 4:04
mvePIEBALDconsult13-Dec-08 4:04 
GeneralRe: Custom Events Pin
DaveyM6913-Dec-08 4:12
professionalDaveyM6913-Dec-08 4:12 
QuestionProg to control other forms Pin
raylion11-Dec-08 9:53
raylion11-Dec-08 9:53 
AnswerRe: Prog to control other forms Pin
Christian Graus11-Dec-08 10:02
protectorChristian Graus11-Dec-08 10:02 
AnswerRe: Prog to control other forms Pin
Andreas Saurwein11-Dec-08 10:35
Andreas Saurwein11-Dec-08 10:35 
AnswerRe: Prog to control other forms Pin
Giorgi Dalakishvili11-Dec-08 19:26
mentorGiorgi Dalakishvili11-Dec-08 19:26 
QuestionSnapping Pin
bsaksida11-Dec-08 9:41
bsaksida11-Dec-08 9:41 
AnswerRe: Snapping Pin
Christian Graus11-Dec-08 9:52
protectorChristian Graus11-Dec-08 9:52 
QuestionC# App without App.Config Pin
shiftyninja11-Dec-08 9:00
shiftyninja11-Dec-08 9:00 
AnswerRe: C# App without App.Config Pin
Christian Graus11-Dec-08 9:21
protectorChristian Graus11-Dec-08 9:21 
GeneralRe: C# App without App.Config Pin
shiftyninja11-Dec-08 10:22
shiftyninja11-Dec-08 10:22 
AnswerRe: C# App without App.Config Pin
blackjack215011-Dec-08 9:56
blackjack215011-Dec-08 9:56 
GeneralRe: C# App without App.Config Pin
Christian Graus11-Dec-08 10:04
protectorChristian Graus11-Dec-08 10:04 
GeneralRe: C# App without App.Config Pin
shiftyninja11-Dec-08 10:18
shiftyninja11-Dec-08 10:18 
GeneralRe: C# App without App.Config Pin
Christian Graus11-Dec-08 12:43
protectorChristian Graus11-Dec-08 12:43 
GeneralRe: C# App without App.Config Pin
shiftyninja11-Dec-08 10:23
shiftyninja11-Dec-08 10:23 
AnswerRe: C# App without App.Config Pin
#realJSOP11-Dec-08 10:44
professional#realJSOP11-Dec-08 10:44 
QuestionPassing parameters to anonymous functions in threads Pin
Andreas Saurwein11-Dec-08 8:11
Andreas Saurwein11-Dec-08 8:11 
All right, that sounds quite weird, but that's the way it works:

foreach(something in somethingelse)
{
  add_a_job_to_the_threadpool(delegate { myFunction(something.Key, something.Value); } );
}


Right, so what obviously happens here is that ALL calls to myFunction() receive the same parameters since something is passed as reference. How do I get this done as values or at least as references to the value, not to the iterator. I already tried to use a struct (which would pass by value) but the something is actually a dictionary<string,> and even wrapping them in a struct doesnt change much.
There must be a better way then copying them before passing to the delegate.

Anyone?

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.