Andri Gunawan's Blog

.NET Developer
See also: Other Geeks@INDC

Browse by Tags

All Tags » C# (RSS)
Fungsi Terbilang untuk C# & VB.NET
public static string Terbilang(int x) { string[] bilangan = {"", "satu", "dua", "tiga", "empat", "lima", "enam", "tujuh", "delapan", "sembilan", "sepuluh", "sebelas"}; string temp = ""; if (x < 12) { temp = " " + bilangan[x]; } else if (x < 20)...
Posted: Sep 10 2005, 04:06 AM by andri | with 4 comment(s)
Filed under: ,
Unsafe programming in C#
By Kumar Gaurav Khanna http://www.codeproject.com/csharp/unsafe_prog.asp Introduction There's always one particular topic that catches the fancy of most C/C++ programmers, and is considered quite complicated and difficult to understand: pointers! Albeit...
Posted: Sep 10 2005, 03:49 AM by andri | with 2 comment(s)
Filed under: