C# Beginners Series Part 3| Basic Syntax (1 of 2)

Syndicate

Modder
Messages
671
Reaction score
551
Points
908
I Am Doing Syntax Is 2 Parts, Part 1 Being Very Basic and Then Part 2 Being More Advanced.
Most Of This Thread Is Easy To Quickly Pick Up On!

Basic Syntax Information

C# Is An Object-Oriented Programming Language, A Program Would Consist Of Various "Objects", That Work Together.
The First Statements In Any Program Will Always Be "using" Followed By The Namespaces. Look Below For An Example xD

Code:
using PS3Lib;
using MetroFramework;

Some Keywords In C# (Wont Need To Know All To Make A Basic Program, But Why Not Look Through :/)
- true
- using
- class
- switch
- void
- while
- throw
- try
- public
- false
- catch

Comments Within The Code | ------> Very Useful

You Can Put Comments In Your Code For Many Reasons, Compilers Ignore All Comments. Some Reasons Why Comments Are Very Useful??

- To Explain A Piece Of Code
- Cut Something From Your Code Temporarily

There Are Two Different Ways To Use The Comments, Look Below For An Example Of Each..

For Writing Multiple Lines

Code:
/* Write Your Comment Here...... */

For Writing Single Lines

Code:
}
//Write Your Comment Here.....



Currently Writing Part 2
 

Syndicate

Modder
Messages
671
Reaction score
551
Points
908
Wtf is this ****, all you did is show people how to nullify code :/
was one of the intensios, but also show useful things to know in C# and it says 1/2..., this isn't even a tenth of what I have already written
 
P

Patrick

Guest
was one of the intensios, but also show useful things to know in C# and it says 1/2..., this isn't even a tenth of what I have already written
you should put it all on one thread, there is no need to do two threads
 

Harry

Certified Sick ℂunt
Premium Member
Messages
1,263
Reaction score
969
Points
973
Although simple and my nan could do this, I like the way you've done it. As I always say, there is always someone wanting to know how, but don't know how.
 

BullyWiiPlaza

Modder
Messages
214
Reaction score
174
Points
818
Lol, C# is Microsoft's language so there are 1000's of tutorials online. No need to make another one. Check out
You do not have permission to view link Log in or register now.
video for a complete C# tutorial. Better spend your time doing something like GSC in detail because it's not a mainstream language due to it being specific to Call of Duty and modding so it would be more appreciated (I don't care lmao but others).
 
Last edited:

Syndicate

Modder
Messages
671
Reaction score
551
Points
908
Lol, C# is Microsoft's language so there are 1000's of tutorials online. No need to make another one. Check out
You do not have permission to view link Log in or register now.
video for a complete C# tutorial. Better spend your time doing something like GSC in detail because it's not a mainstream language due to it being specific to Call of Duty and modding so it would be more appreciated (I don't care lmao but others).
don't get why your mentioning GSC, what has that got to do with C#
 

BullyWiiPlaza

Modder
Messages
214
Reaction score
174
Points
818
don't get why your mentioning GSC, what has that got to do with C#
Because this is a modding site and GSC is one of the popular languages people still like to use with little proper tutorials unlike C# but you may as well do any other non-mainstream language so it makes more sense.
 
P

Patrick

Guest
Because this is a modding site and GSC is one of the popular languages people still like to use with little proper tutorials unlike C# but you may as well do any other non-mainstream language so it makes more sense.
You clearly don't understand what he is saying, he is saying why would you write a 'tutorial' on how to code c# when their is tons already made since its a mainstream coding language.. if you are going to make a tutorial make it about something that hasn't been done before.
 
Top