Wednesday, December 4, 2013

Woooow....I'm a Rich Man !!!!

oh god, come on you guys should try it ... it was amazing ... I only work for 30 minutes and got a 45$ / around Rp.900.000 ... hahahahah :D

Klik Here...lets go, if u want to a rich man / w-man..

Monday, December 2, 2013

" Hello C Sharp " !!

Your First C# Code " Hello C Sharp "

Hallo kawan, berjumpa lagi...setelah sekian lama aku ga buat sebuah thread..sekarang aku sedang mempelajari C#...kalian tau apa itu C# (C Sharp) ? C Sharp (C#) adalah sebuah bahasa pemograman berbahasa C, ada banyak macam bahasa pemograman yaitu C++, pascal, VB.NET, Delphi, dll.
Nah sekarang aku mau buat code sederhana menggunakan console application di C#...

Nah, pertama kita pastikan dulu kerangkanya...
==============================================
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication2
{
    class Program
    {
    static void Main (string [] args)
    {
       
}
    }
}
============================================

Setelah itu kita akan menuliskan code di bawah ini :

Console.writeLine ("Hello C Sharp");
Console.readLine();
===========================================

Final Codenya :

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication2
{
    class Program
    {
    static void Main (string [] args)
    {
        Console.WriteLine("Hello C Sharp !!");
        Console.ReadLine();
    }
    }
}