
C # is a programming language (♦ see DEF) multiplatform, object oriented, derived from C++ and developed by Microsoft.
Similar to JAVA, it allows you to create websites, Web and PC App., games and DB App.
Code Examples
Let's start with very simple codes. The more you progress, page after page, the more sophisticated the scripts will be. However, you must pass the cape of 30 to 40 pages per level, before moving on to the next step... COPY AND IMMERSE YOURSELF!
C 0001 - Hello World !
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
using System; namespace Bonjourtoutlemonde { class Program { static void Main(string[] args) { Console.WriteLine("Hello World !"); } } }
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
C 0002 - Importance Of Syntax
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
using System; namespace Helloworld { class Program { static void Main(string[] args) { Console.WriteLine("Hello World !"); Console.WriteLine("I go to the line..."); Console.Write("Hello World !"); Console.Write(" I stay on this line..."); } } }
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
C 0003 - Several Types Of Information
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
using System; namespace MyApplication { class Program { static void Main(string[] args) { int myNum = 9; // Integer double myDoubleNum = 4.99D; // Floating point char myLetter = 'M'; // Character bool myBool = true; // Boolean string myText = "Hello World !"; // String Console.WriteLine(myNum); Console.WriteLine(myDoubleNum); Console.WriteLine(myLetter); Console.WriteLine(myBool); Console.WriteLine(myText); } } }
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
C 0004 - Declarations And Statements
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
using System; namespace MyApplication { class Program { static void Main(string[] args) { int x = 48; int y = 22; if (x > y) { Console.WriteLine("x is bigger than y"); } } } }
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
C# Technical Specifications
Most Recent Versions
Frameworks
Tools And Methodologies
Tests
Info+ (C#)
* Created and developped by Microsoft
* Influenced by C/C ++ and Java
* Cross-platform
* Multiple licenses
Tools+ (C#)
Practical Cases
CASE 1
BASIC LEVEL
Preparing a working environment
These recommendations will get you started with C#, as comfortably as possible.
CASE 2
INTERMEDIATE LEVEL
Create a Web App.
This little kit will allow you to design a Web App. in the field of online clothing sales.
CASE 3
News
- CSharp
- Hits: 251