Click here to Skip to main content
15,890,690 members

Survey Results

Are you working with .NET?   [Edit]

Survey period: 21 Jun 2004 to 27 Jun 2004

It's been out for a while now, but are you using it?

OptionVotes% 
Yes98462.16
No, but we are planning to.21313.46
No38624.38



 
GeneralRe: Switch to .net? Pin
KevinHall22-Jun-04 12:59
KevinHall22-Jun-04 12:59 
GeneralRe: Switch to .net? Pin
worldspawn22-Jun-04 13:25
worldspawn22-Jun-04 13:25 
GeneralRe: Switch to .net? Pin
Miguel Hasse de Oliveira22-Jun-04 13:51
professionalMiguel Hasse de Oliveira22-Jun-04 13:51 
GeneralRe: Switch to .net? Pin
J. Dunlap23-Jun-04 8:09
J. Dunlap23-Jun-04 8:09 
GeneralRe: Switch to .net? Pin
Miguel Hasse de Oliveira23-Jun-04 13:28
professionalMiguel Hasse de Oliveira23-Jun-04 13:28 
GeneralRe: Switch to .net? Pin
Ian Darling25-Jun-04 13:58
Ian Darling25-Jun-04 13:58 
GeneralRe: Switch to .net? Pin
Miguel Hasse de Oliveira26-Jun-04 7:36
professionalMiguel Hasse de Oliveira26-Jun-04 7:36 
GeneralRe: Switch to .net? Pin
Ian Darling26-Jun-04 8:21
Ian Darling26-Jun-04 8:21 
Miguel Hasse de Oliveira wrote:
Not only can C/C++ make use of a garbage collector or not, but it can use diferent collection management schemes!!!

But ultimately, you have to settle on a single memory management model. If you're really worrying about which one, then you've got bigger design problems....

Miguel Hasse de Oliveira wrote:
I never said garbage collection was not a worthwhile thing to have, but you should have control of when and where it should be used in your code.

Which misses the point of garbage collection. You shouldn't control it, because the chances are it has a better idea of when to do things than you do, 99% of the time. You either adopt garbage collection and let it get on with it (saving you time and development costs), or you do it yourself, and spend 30% longer on your app avoiding memory corruption and memory leaks.

Doing it yourself doesn't even guarantee a better use of memory than garbage collection, because you usually have to put in your own reference counting schemes and smart pointer management code and so forth, and if you're using custom allocators, you have to store all that info too (which is normally punted off to new/malloc/whatever). Then you have write code to avoid memory fragmentation issues too (which we've encountered here in C++ apps, but never C# ones).


Ian Darling
The world is a thing of utter inordinate complexity ... that such complexity can arise ... out of such simplicity ... is the most fabulous extraordinary idea ... once you get some kind of inkling of how that might have happened - it's just wonderful ... the opportunity to spend 70 or 80 years of your life in such a universe is time well spent as far as I am concerned - Douglas Adams
GeneralRe: Switch to .net? Pin
Ian Darling25-Jun-04 13:43
Ian Darling25-Jun-04 13:43 
GeneralRe: Switch to .net? Pin
Miguel Hasse de Oliveira26-Jun-04 7:45
professionalMiguel Hasse de Oliveira26-Jun-04 7:45 
GeneralRe: Switch to .net? Pin
Ian Darling26-Jun-04 8:09
Ian Darling26-Jun-04 8:09 
GeneralRe: Switch to .net? Pin
Miguel Lopes23-Jun-04 2:59
Miguel Lopes23-Jun-04 2:59 
GeneralRe: Switch to .net? Pin
Miguel Hasse de Oliveira22-Jun-04 14:04
professionalMiguel Hasse de Oliveira22-Jun-04 14:04 
GeneralRe: Switch to .net? Pin
Ian Darling25-Jun-04 13:46
Ian Darling25-Jun-04 13:46 
GeneralRe: Switch to .net? Pin
Miguel Hasse de Oliveira26-Jun-04 7:29
professionalMiguel Hasse de Oliveira26-Jun-04 7:29 
GeneralRe: Switch to .net? Pin
Ian Darling26-Jun-04 7:36
Ian Darling26-Jun-04 7:36 
GeneralRe: Switch to .net? Pin
kezhu22-Jun-04 20:48
kezhu22-Jun-04 20:48 
GeneralRe: Switch to .net? Pin
Nemanja Trifunovic23-Jun-04 3:12
Nemanja Trifunovic23-Jun-04 3:12 
GeneralRe: Switch to .net? Pin
Lonnie McCullough22-Jun-04 19:15
Lonnie McCullough22-Jun-04 19:15 
GeneralRe: Large Financial System Pin
Michael Dunn24-Jun-04 20:05
sitebuilderMichael Dunn24-Jun-04 20:05 
GeneralOf course Pin
Uroš Šmon21-Jun-04 19:46
professionalUroš Šmon21-Jun-04 19:46 
GeneralRe: Of course Pin
NormDroid21-Jun-04 20:49
professionalNormDroid21-Jun-04 20:49 
Generalhell NO! Pin
Bob Stanneveld21-Jun-04 12:36
Bob Stanneveld21-Jun-04 12:36 
GeneralRe: hell NO! Pin
Aaron Eldreth21-Jun-04 13:40
Aaron Eldreth21-Jun-04 13:40 
GeneralRe: hell NO! Pin
Bob Stanneveld22-Jun-04 1:33
Bob Stanneveld22-Jun-04 1:33 

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.