I have learnt C and a little C++ i know the similarities between C and C++, but i do not know anything on C#. What are th application of it?
Help on this would be much appreciated.
Help on this would be much appreciated.
| Code: |
| #include <iostream>
int main () { std::cout << "Hello, world!"; return 0; } |
| Code: |
| public class HelloWorldApplication
{ public static void main(String[] args) { System.out.println("Hello, world!"); } } |
| Code: |
| class HelloWorldApplication
{ static void Main() { System.Console.WriteLine("Hello, world!"); } } |