stylebuzzer Posted July 28, 2019 Posted July 28, 2019 I want to know that how can i write a code on CSharp and also did any one tell me that is it necessary to learn C ++ first to understand CSharp?
Strange Posted July 28, 2019 Posted July 28, 2019 I don't think anyone is going to provide a programming course on the forum. https://www.google.com/search?q=visual+studio+c%23+tutorial If you have any specific questions, feel free to come back and ask. (But, no, it isn't necessary to learn C or C++ first; that will just cause confusion.)
Sensei Posted July 28, 2019 Posted July 28, 2019 C/C++, C#, Java, etc. languages have just a few built-in statements and built-in instructions. And many of them are exactly the same in a couple different popular languages. So if you will learn in one language, you will know them all. However, to efficiently write programs, you need to learn standard linkable libraries e.g. stdlib in C/C++, standard dynamic libraries in C/C++, and .NET Framework in C#. They contain true functionalities, provides a way to connect to operating system, I/O, hardware etc. Amount of instructions in such system as .NET Framework is tremendous (counted maybe even in hundred thousands). You should get accustomed to with at least basic I/O, threading, memory, later UI, gfx, music. So, you need to write program, every day, new program, to check what external libraries and frameworks have to offer.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now