Click here to Skip to main content
15,926,857 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to call external application in C#.NET Pin
dbrenth24-Jan-07 8:44
dbrenth24-Jan-07 8:44 
AnswerRe: How to call external application in C#.NET Pin
Eyungwah24-Jan-07 13:32
Eyungwah24-Jan-07 13:32 
GeneralRe: How to call external application in C#.NET Pin
Shajeel24-Jan-07 19:29
Shajeel24-Jan-07 19:29 
GeneralRe: How to call external application in C#.NET Pin
Seishin#25-Jan-07 3:27
Seishin#25-Jan-07 3:27 
QuestionHow to call external application in C#.NET Pin
Eyungwah24-Jan-07 8:28
Eyungwah24-Jan-07 8:28 
QuestionComparing large amounts of binary data Pin
sbpont24-Jan-07 8:27
sbpont24-Jan-07 8:27 
AnswerRe: Comparing large amounts of binary data Pin
Christian Graus24-Jan-07 9:09
protectorChristian Graus24-Jan-07 9:09 
AnswerRe: Comparing large amounts of binary data Pin
Guffa24-Jan-07 9:22
Guffa24-Jan-07 9:22 
You can use a block of unsafe code, then you can use pointers, and compare the data int by int instead of byte by byte. Then you get more or less what memcmp would do. You have to pin the buffers in memory first, though, so that the garbage collector can't move them.

The buffer size doesn't matter much, unless it's very large or very small. If you create objects that are larger than 85 kB, they will be allocated from the large objects heap. The large objects heap can only grow, it never gives any memory back to the system even if the memory is not used, so you should avoid greating large objects if you can.

---
Year happy = new Year(2007);

AnswerRe: Comparing large amounts of binary data Pin
Luc Pattyn24-Jan-07 15:06
sitebuilderLuc Pattyn24-Jan-07 15:06 
QuestionRegistry Values Pin
CodeItWell24-Jan-07 8:22
CodeItWell24-Jan-07 8:22 
AnswerRe: Registry Values Pin
Martin#24-Jan-07 10:11
Martin#24-Jan-07 10:11 
AnswerRe: Registry Values Pin
Luc Pattyn24-Jan-07 16:25
sitebuilderLuc Pattyn24-Jan-07 16:25 
QuestionHidden Text From RichTextBox Pin
Abisodun24-Jan-07 7:34
Abisodun24-Jan-07 7:34 
QuestionPerformance issue: I/O intensive Pin
ESTAN24-Jan-07 7:30
ESTAN24-Jan-07 7:30 
AnswerRe: Performance issue: I/O intensive Pin
Aaron VanWieren24-Jan-07 9:27
Aaron VanWieren24-Jan-07 9:27 
AnswerRe: Performance issue: I/O intensive Pin
Luc Pattyn24-Jan-07 15:11
sitebuilderLuc Pattyn24-Jan-07 15:11 
GeneralRe: Performance issue: I/O intensive Pin
ESTAN25-Jan-07 10:30
ESTAN25-Jan-07 10:30 
GeneralRe: Performance issue: I/O intensive Pin
Luc Pattyn25-Jan-07 11:19
sitebuilderLuc Pattyn25-Jan-07 11:19 
Questionc# to pascal Pin
conemajstor24-Jan-07 7:23
conemajstor24-Jan-07 7:23 
AnswerRe: c# to pascal Pin
Christian Graus24-Jan-07 9:10
protectorChristian Graus24-Jan-07 9:10 
AnswerRe: c# to pascal Pin
ednrgc24-Jan-07 9:25
ednrgc24-Jan-07 9:25 
QuestionCustom row sorting XML datagrid Pin
bartbauldry24-Jan-07 7:19
bartbauldry24-Jan-07 7:19 
GeneralCSUnit VS NUnit Pin
Aaron VanWieren24-Jan-07 6:34
Aaron VanWieren24-Jan-07 6:34 
GeneralRe: CSUnit VS NUnit Pin
ednrgc24-Jan-07 9:04
ednrgc24-Jan-07 9:04 
GeneralRe: CSUnit VS NUnit Pin
Aaron VanWieren24-Jan-07 9:24
Aaron VanWieren24-Jan-07 9:24 

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.