Click here to Skip to main content
15,891,375 members

Survey Results

C# - Cool or UnCool?   [Edit]

Survey period: 3 Jul 2000 to 9 Jul 2000

C# is out of the closet. So what d'ya think?

OptionVotes% 
Way cool. Can't wait to get my hands on a compiler24231.72
Doesn't fuss me either way17623.07
What a dud. I'm not impressed.34545.22



 
GeneralC# will.. Pin
2d15-Jul-00 4:25
2d15-Jul-00 4:25 
GeneralMicrosoft is behind the rise of Java and they will one responsible for the fall of COM, C# .... Pin
arvind singh14-Jul-00 10:40
arvind singh14-Jul-00 10:40 
GeneralRe: Microsoft is behind the rise of Java and they will one responsible for the fall of COM, C# .... Pin
Member 147417-Jul-00 14:24
Member 147417-Jul-00 14:24 
GeneralC# - a J++ rehash? Pin
Thomas Bratt7-Jul-00 2:04
Thomas Bratt7-Jul-00 2:04 
GeneralRe: C# - a J++ rehash? Pin
Member 26277-Jul-00 4:54
Member 26277-Jul-00 4:54 
GeneralRe: C# - a J++ rehash? Pin
Eddy Celis7-Jul-00 12:48
professionalEddy Celis7-Jul-00 12:48 
GeneralRe: C# - a J++ rehash? Pin
shimon8-Jul-00 19:55
shimon8-Jul-00 19:55 
GeneralRe: C# - a J++ rehash? Pin
Martin Lapierre12-Jul-00 6:03
Martin Lapierre12-Jul-00 6:03 
GeneralRe: C# - a J++ rehash? Pin
CloudJin9-Jul-00 20:19
CloudJin9-Jul-00 20:19 
GeneralRe: C# - a J++ rehash? Pin
Uncle Sam10-Jul-00 21:18
Uncle Sam10-Jul-00 21:18 
GeneralRe: C# - a J++ rehash? Pin
Member 147417-Jul-00 13:59
Member 147417-Jul-00 13:59 
GeneralIts gotta be good... Pin
Daz Richards3-Jul-00 12:29
Daz Richards3-Jul-00 12:29 
GeneralRe: Its gotta be good... Pin
Uncle Sam11-Jul-00 20:18
Uncle Sam11-Jul-00 20:18 
GeneralRe: Its gotta be good... Pin
Uncle Sam11-Jul-00 20:18
Uncle Sam11-Jul-00 20:18 
GeneralRe: Its gotta be good... Pin
Daz Richards11-Jul-00 23:18
Daz Richards11-Jul-00 23:18 
GeneralRe: Its gotta be good... Pin
Uncle Sam12-Jul-00 3:56
Uncle Sam12-Jul-00 3:56 
GeneralMy assessment Pin
Alvaro Mendez3-Jul-00 10:45
Alvaro Mendez3-Jul-00 10:45 
GeneralRe: My assessment Pin
Keith Hill6-Jul-00 14:11
Keith Hill6-Jul-00 14:11 
GeneralRe: My assessment Pin
George6-Jul-00 22:38
George6-Jul-00 22:38 
GeneralRe: My assessment Pin
Member 11277-Jul-00 1:57
Member 11277-Jul-00 1:57 
As George said, in C++ there's nothing to stop you deriving your world from Object (some libraries do just that). It's absolute cake to create a collection class in C++ that will hold polymorphic types, just derive them from a common base class. That is not what templates are about. Parameterized types are orthogonal to inheritance. In respect of collections, what templates allow you to do is produce an efficient *typed* (statically checked) container from a common code template, rather than a container for polymorphic objects. Not the same thing at all. Of course, a glance at the Standard Library shows that there is far more to templates than typed containers...

One of the major elements of C++ missing from both Java and C# is the direct link of resource aquisition and disposal to the object lifetime by guaranteed destruction. The finally clause acts on block scopes, so it doesn't really fit the bill. I much prefer having both resource aquisition and disposal encapsulated within the class - it seems so much safer. I don't know why Java doesn't have destructors, garbage collection can still be done.

Dav
GeneralRe: My assessment Pin
Alvaro Mendez7-Jul-00 5:21
Alvaro Mendez7-Jul-00 5:21 
GeneralRe: My assessment Pin
Alvaro Mendez7-Jul-00 5:58
Alvaro Mendez7-Jul-00 5:58 
GeneralMSDN Pin
Member 4642-Jul-00 21:27
Member 4642-Jul-00 21: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.