C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2720
Number of posts: 5746

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Edit Report
Welcome to the C# (C-Sharp) Messageboard Posted by WEBMASTER on 23 Jan 2001 at 2:38 AM
Welcome to the new C# (C-Sharp) messageboard!

/WEBMASTER

Edit Report
im the first guy in here, woohoo!! Posted by pingpong on 23 Jan 2001 at 7:48 AM
thank u webmaster

: Welcome to the new C# (C-Sharp) messageboard!
:
: /WEBMASTER
:


Edit Report
And im the second!! (no message) Posted by C Squared on 23 Jan 2001 at 10:48 AM



Edit Report
I'm guess I'm the 3'rd Posted by Daniel Widegren on 24 Jan 2001 at 4:37 AM
: Welcome to the new C# (C-Sharp) messageboard!
:
: /WEBMASTER
:


Edit Report
Re: Welcome to the C# (C-Sharp) Messageboard Posted by $Dymanic on 24 Jan 2001 at 1:25 PM
I've never even HEARD of C#! Haven't been living under a rock exactly - or have I? I just started learning C++. Do I need to switch?



Edit Report
Absolutely not! Posted by C Squared on 24 Jan 2001 at 7:38 PM
Do not swich from C++ to C#! You should learn C++. Its a great launguage. C++ is powerful, portible, and userfirendly. Stick with it and you will be rewarded!

-C^2


Edit Report
Re: Absolutely not! Posted by pingpong on 25 Jan 2001 at 8:03 AM
exactly.. just keep ur eyes open on c# and be ready when the times come!

but i have to disagree

c++ is not powerful! its low level (read pointers) everything else u do that is not pointer-based for example array indexing would be as slow as any other language.

portable? .. for shell scripts maybe. what can u possibly write these days without a gui and/or the need to interact with the net?

userfriendly.. can u say templates? how about those 10K error messages?

: Do not swich from C++ to C#! You should learn C++. Its a great launguage. C++ is powerful, portible, and userfirendly. Stick with it and you will be rewarded!
:
: -C^2
:
:


Edit Report
Re: Absolutely not! Posted by $Dymanic on 25 Jan 2001 at 5:45 PM
: exactly.. just keep ur eyes open on c# and be ready when the times come!
:
: but i have to disagree
:
: c++ is not powerful! its low level (read pointers) everything else u do that is not pointer-based for example array indexing would be as slow as any other language.
:
: portable? .. for shell scripts maybe. what can u possibly write these days without a gui and/or the need to interact with the net?
:
: userfriendly.. can u say templates? how about those 10K error messages?
:
: : Do not swich from C++ to C#! You should learn C++. Its a great launguage. C++ is powerful, portible, and userfirendly. Stick with it and you will be rewarded!
: :
: : -C^2
: :
: :
:
:
Does C# use pointers?

Edit Report
pointers in c# Posted by pingpong on 26 Jan 2001 at 8:12 AM
yes, u can use pointers in c#:

int x = 10;

System.Console.WriteLine( "Before = {0}", x );

// use pointers
fixed( int* p = &x )
{
*p = 11;
}

System.Console.WriteLine( "After = {0}", x );

u will get
10
11

however, if u use code like the above, ur program is "untrusted" would only run depending on security settings or a digital signature.

apply "i think" to all the above!



Edit Report
Re: Absolutely not! Posted by Sunlight on 3 Feb 2001 at 3:45 PM
: c++ is not powerful! its low level (read pointers) everything else u do that is not pointer-based for example array indexing would be as slow as any other language.

Not at all. C++ does no array bounds checking, which is in just about every other language, making array indexing fast. C++ tends to do very little checking, which makes it fast.

: userfriendly.. can u say templates?

Which in my opinion is the single biggest omission from C#. I've always been a great believer in 'let the compiler catch the error'; if I accidentally put a String in a collection of Integers, I won't find out about it until I get a runtime error reading from the collection... which might be some considerable time later.
--
Sunlight

Edit Report
C # compiler Posted by Ali Raza on 18 Feb 2001 at 1:09 AM
hi,
anyone plz tell me, from where i can get only c# compiler, not the whole .NET fromework cuz its 110mb and my connection suxs.



Report
Re: C # compiler Posted by khoward on 23 Apr 2001 at 8:42 PM
: hi,
: anyone plz tell me, from where i can get only c# compiler, not the whole .NET fromework cuz its 110mb and my connection suxs.
:
:
:
You cannot program in C# without the .NET framework (it relies on the .NET base class library). Also, the compiler requires .NET. Your best bet is to get a CD with everything, you can get the Beta 1 CD from Microsoft for just the price of shipping.



Report
Re: C # compiler Posted by 3ero_Kool on 1 Aug 2001 at 2:14 PM
you can get just C# from microsofts site its a 125 meg d/l for beta 2 now, and about the cd u where talking about i was thinking of getting it but i need it real soon , so how long do you think it would take to get to sydney australia ?

Thanx Zero





 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.