BirthDay Blast
Jungle Mai Mungle Tera Hi Dam Se
Sub Na Yeh Shoor Machaii Hai Salgira Ka Din Aeya Hai
( too difficult to rite in roman urdu........)
public class Birthday
{
private int day;
private int month;
private int year;
private Name name;
private string Famous_Event;
void Win_Cake(string Comments)
{
// Place a Comment and Chance to Win a Grand Prize 50,000 mg Piece of Cake.
// heheheheh.........
}
}
public Class Name
{
string _first;
string _middle;
string _last;
}
public void Main()
{
// this code is only run on .NET 3.0 framework....i think so not sure....
Birthday Unknown = new Birthday{ day=4, month=7, year=1984,
new Name{ _first="Zohaib", _middle="Uddin", _last="Khan"},
Famous_Event="Independence Day of USA" };
Unknown.Win_Cake(" Janam Din Mubarak Ho");
}