C# soon?

Does anyone know if there is going to be a C# course coming? A game called Rimworld runs on it and I want to know how to use it to make mods.

1 Like

If you learn Java, you will basically know C#! :slight_smile:
They are extremely similar.

edit: In terms of syntax. See this link for syntactical comparison.

3 Likes

Ah, I like the source you provided.
Would you say that C# is closely related to C, C++, etc.?
Because I’m proficient in Java, but I was (unsuccessfully) trying to messing about in C and it just was not happening. :grimacing:
But I know C# and some of the other Cs are used for gaming a lot.

@chilller6
Here is a link to some compiled non-CodeCademy courses for languages that this site doesn’t teach. Including Objective C, C#, C++, &tc. :slight_smile:

3 Likes

All the C languages are generally quite similar. C is not object oriented, though. (Note: you can write object oriented code in it, but it is not designed with the functionality in mind.)

Here’s where it comes to opinion, though. I would always choose C++ over C unless absolutely necessary. C++ adds so much more to the language. Again, this is purely opinion. :slight_smile:

Interestingly enough, these C languages are so often used for creating games because they don’t need to run on anything more than the machine they were compiled for. Java, for example, is compiled to byte code which is run by a Java Virtual Machine…(written in C/C++ ;)) whereas C/C++ are compiled directly to machine code/assembly. As such, they have more direct access to the computer’s hardware.

This is getting to be slightly too advanced for this learning forum, though. :slight_smile:

3 Likes