Click here to Skip to main content
16,020,261 members
Home / Discussions / C#
   

C#

 
AnswerRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
Christian Graus12-Jun-08 6:34
protectorChristian Graus12-Jun-08 6:34 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 7:23
bigchump12-Jun-08 7:23 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
Christian Graus12-Jun-08 7:30
protectorChristian Graus12-Jun-08 7:30 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 8:33
bigchump12-Jun-08 8:33 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
Christian Graus12-Jun-08 8:49
protectorChristian Graus12-Jun-08 8:49 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 9:24
bigchump12-Jun-08 9:24 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
Christian Graus12-Jun-08 9:47
protectorChristian Graus12-Jun-08 9:47 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
carbon_golem12-Jun-08 8:59
carbon_golem12-Jun-08 8:59 
bigchump wrote:
From my perspective, this whole DOT NET thing is a throwback to the old "interpeter" days with this JIT thing.


CSharp is an Imperative language not Interpreted. Here[^] in an explanation.

bigchump wrote:
I don't understand why the JIT compiler "chokes" (only at 64 bit, not at 32) the first time a large function is called.


Because the machine code doesn't exist the first time a large function is called. It lives as IL code and has to be JIT'ed into machine code. If you've come from C programming and did a port, then you probably kept the nuances of C which don't work so well in C#. I think in order to pinpoint your performance issues, you may want to consider a profiler[^]. It'll be nigh on impossible to tell where you're going wrong here.


bigchump wrote:
What I don't understand AT ALL is the inability to read/write a struct/class directly to disk without a whole lot of overhead involved.


Have a look at this[^].

Scott P

“It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.”
-Edsger Dijkstra

GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 9:55
bigchump12-Jun-08 9:55 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
MaxRelaxman12-Jun-08 11:03
MaxRelaxman12-Jun-08 11:03 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 12:13
bigchump12-Jun-08 12:13 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
carbon_golem12-Jun-08 11:31
carbon_golem12-Jun-08 11:31 
Generali Pin
bigchump12-Jun-08 12:31
bigchump12-Jun-08 12:31 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 12:53
bigchump12-Jun-08 12:53 
QuestionRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
Michael Schubert12-Jun-08 20:47
Michael Schubert12-Jun-08 20:47 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
#realJSOP12-Jun-08 10:52
professional#realJSOP12-Jun-08 10:52 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 12:37
bigchump12-Jun-08 12:37 
AnswerRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
Simon P Stevens12-Jun-08 22:01
Simon P Stevens12-Jun-08 22:01 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump13-Jun-08 5:33
bigchump13-Jun-08 5:33 
GeneralRe: AMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
Simon P Stevens15-Jun-08 23:34
Simon P Stevens15-Jun-08 23:34 
QuestionWebservice question Pin
johland12-Jun-08 5:42
johland12-Jun-08 5:42 
AnswerRe: Webservice question Pin
Christian Graus12-Jun-08 6:05
protectorChristian Graus12-Jun-08 6:05 
GeneralRe: Webservice question Pin
johland12-Jun-08 6:37
johland12-Jun-08 6:37 
GeneralRe: Webservice question Pin
Christian Graus12-Jun-08 6:40
protectorChristian Graus12-Jun-08 6:40 
AnswerRe: Webservice question Pin
Christian Graus12-Jun-08 6:36
protectorChristian Graus12-Jun-08 6: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.