Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
GeneralRe: Async Dispatcher Calls - Need an explaination Pin
Foothill1-Nov-16 8:12
professionalFoothill1-Nov-16 8:12 
GeneralRe: Async Dispatcher Calls - Need an explaination Pin
Richard Deeming1-Nov-16 8:23
mveRichard Deeming1-Nov-16 8:23 
QuestionLabel printing with c# Pin
candogu1-Nov-16 0:57
candogu1-Nov-16 0:57 
AnswerRe: Label printing with c# Pin
OriginalGriff1-Nov-16 1:44
mveOriginalGriff1-Nov-16 1:44 
AnswerRe: Label printing with c# Pin
Richard Deeming1-Nov-16 3:37
mveRichard Deeming1-Nov-16 3:37 
AnswerRe: Label printing with c# Pin
cinias8-Nov-16 3:49
cinias8-Nov-16 3:49 
QuestionHow people generate bench mark graph for c# routine execution speed Pin
Tridip Bhattacharjee31-Oct-16 19:08
professionalTridip Bhattacharjee31-Oct-16 19:08 
AnswerRe: How people generate bench mark graph for c# routine execution speed Pin
Pete O'Hanlon31-Oct-16 20:52
mvePete O'Hanlon31-Oct-16 20:52 
Effectively you need two parts to perform the benchmarking. The first is a timer that you use to log the difference between the start of the operation and the time it ends (it's worth looking at the Stopwatch class here - don't use DateTime to do this). Then you need to run the code you want to benchmark many, many times. I would typically start by thinking that the benchmark should exercise the code about 10K times.

When you run the code, run it on a machine that isn't doing anything else. Better still - run it on several machines of different configurations so that you can get an idea of how things such as processor power, memory, etc, have an effect.
This space for rent

QuestionHow to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi31-Oct-16 0:29
Rıza Berkay Ayçelebi31-Oct-16 0:29 
AnswerRe: How to implement the huffman using c# for image Pin
Pete O'Hanlon31-Oct-16 0:50
mvePete O'Hanlon31-Oct-16 0:50 
GeneralRe: How to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi31-Oct-16 23:14
Rıza Berkay Ayçelebi31-Oct-16 23:14 
GeneralRe: How to implement the huffman using c# for image Pin
Richard MacCutchan1-Nov-16 0:54
mveRichard MacCutchan1-Nov-16 0:54 
GeneralRe: How to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi1-Nov-16 1:36
Rıza Berkay Ayçelebi1-Nov-16 1:36 
GeneralRe: How to implement the huffman using c# for image Pin
Richard MacCutchan1-Nov-16 1:53
mveRichard MacCutchan1-Nov-16 1:53 
GeneralRe: How to implement the huffman using c# for image Pin
Pete O'Hanlon1-Nov-16 2:30
mvePete O'Hanlon1-Nov-16 2:30 
AnswerRe: How to implement the huffman using c# for image Pin
Jochen Arndt31-Oct-16 1:48
professionalJochen Arndt31-Oct-16 1:48 
GeneralRe: How to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi31-Oct-16 3:19
Rıza Berkay Ayçelebi31-Oct-16 3:19 
GeneralRe: How to implement the huffman using c# for image Pin
Jochen Arndt31-Oct-16 3:46
professionalJochen Arndt31-Oct-16 3:46 
GeneralRe: How to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi31-Oct-16 6:13
Rıza Berkay Ayçelebi31-Oct-16 6:13 
GeneralRe: How to implement the huffman using c# for image Pin
Jochen Arndt31-Oct-16 6:19
professionalJochen Arndt31-Oct-16 6:19 
GeneralRe: How to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi31-Oct-16 7:39
Rıza Berkay Ayçelebi31-Oct-16 7:39 
GeneralRe: How to implement the huffman using c# for image Pin
Eddy Vluggen31-Oct-16 8:15
professionalEddy Vluggen31-Oct-16 8:15 
GeneralRe: How to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi31-Oct-16 9:00
Rıza Berkay Ayçelebi31-Oct-16 9:00 
GeneralRe: How to implement the huffman using c# for image Pin
Rıza Berkay Ayçelebi31-Oct-16 8:51
Rıza Berkay Ayçelebi31-Oct-16 8:51 
GeneralRe: How to implement the huffman using c# for image Pin
harold aptroot31-Oct-16 9:27
harold aptroot31-Oct-16 9:27 

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.