Technology

A love song for C#

I found the following conversation online today.  For non-technical readers, it boils down to something like this:

c# guy: “Hey, here’s a simple way to do something that is sometimes a gotcha.”

Pierre, confused c++ reader: “That can never work! While the code you wrote looks nice and simple, it actually has lots of hidden evils that are sure to ruin any computer it runs on!”

another c# guy: “We weren’t talking about C++, Pierre. We were talking about C#.”

So what’s it all about? C# and C++ are both programming languages, Microsoft wrote one of them, supports both of them.  Both are powerful, you could argue that C++ is a bit more powerful – but in the kind of way where its often possible that things that look easy are really, really wrong.  c# is much nicer in this way; it’s very very easy to write C++ in a way that’s wrong.

The conversation:

Paul:

char[] is quite convenient if you’re reading file data using StreamReader, but it doesn’t offer the same functionality as string does. Here’s one way I’ve found of converting:

char[] charBuf = new char[1024]; // Example char array

string s = “”; // Example empty string

s = new string(charBuf); // Create new string passing charBuf into the constructor

Pierre said… No!

new string(charBuf) returns a string* but s is not a string*!
And if it was, who will free it’s memory?

To convert a char* to a string you may use :

s.insert(0, charBuf);

And if you are not sure that s is empty, use s.clear() before.

findepi said

Pierre, it’s C# not C++ 🙂

As soon as I read that line “It’s C#, not C++”, I sighed in relief. I hate to be pro Microsoft, but it really is better.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s