up vote 0 down vote favorite
share [g+] share [fb]

Simple question, I'm justing looking for a yes or no clarification. A citation would be appreciated but not necessary.

Bonus Question - Can Objective-C be used on Windows, or only on MAC?

link|improve this question

1  
Please post your "bonus question" as a separate question. – Adam Goode Jan 1 '10 at 4:15
Adam - It's a duplicate though. – Moshe Jan 1 '10 at 4:17
1  
@Moshe: If you know it's a duplicate, why are you asking it now? – Greg Hewgill Jan 1 '10 at 4:18
@Greg - As a "bonus Question" I can get away with it. As a fresh one, I don't stand a chance. I also thought of it while typing up this one. Also - I'm researching iPhone development and I want to learn objective-c for that reason. – Moshe Jan 1 '10 at 4:22
It sounds like you're really looking for this question: stackoverflow.com/questions/113547/… – Greg Hewgill Jan 1 '10 at 4:25
show 1 more comment
feedback

6 Answers

up vote 11 down vote accepted

No.

http://en.wikipedia.org/wiki/C_Sharp_%28programming_language%29

http://en.wikipedia.org/wiki/Objective-C

Bonus: Objective-C can be compiled by GCC, which can run on Windows.

link|improve this answer
feedback

No. Essentially: Objective C is from Apple and C# is from Microsoft. That's a gross oversimplification, but it's close enough.

link|improve this answer
+1 for the courage to make a gross oversimplification that is, nevertheless as you say, close enough. – GregS Jan 1 '10 at 4:19
I actually am told by some friends that I am the 'master of simplification' lol. I just need to learn a new language, get a new computer and then voila, an iPhone app! It should take... um ... a few hours... lol – Moshe Jan 1 '10 at 4:23
Thanks, GregS. I thought I was going to be eviscerated for that one. Glad to see it was read in the hasty spirit it was intended. – Ry4an Jan 1 '10 at 4:29
feedback

No. Objective-C was developed around the same time as C++ (late 1980s), and C# was developed much more recently (early 2000s).

link|improve this answer
feedback

Objective C can be thought of as a thin layer on top of 'C'. It was designed in the early '80s and Steve Jobs used it for the NeXT development. Since OSX is built upon that foundation, Mac / iPhone development use Objective C

link|improve this answer
feedback

Essentially:

Objective-C is an object-oriented layer on top of C. It's a combination of C and Smalltalk.

C# is a reworking of Java, which is a simplification of C++, which is a different object-oriented layer on top of C.

They're cousins -- both come from C originally -- but they went down different paths.

link|improve this answer
C# may have similarities to Java, but it is by no means a "reworking" of it. – Matt Greer Jan 1 '10 at 5:23
Matt -- I look forward to your answer to this question, then. – Chip Uni Jan 1 '10 at 8:06
feedback

So, the difference between the two is clear.

Can you use Objective C on platform X? Of course, it's in gcc, but the only current platform that has really good Objective C libraries is OS X, although there is GnuSTEP (which is not really mature). So, it really depends on what you want to do with the language.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.