It's just a program for when the user opens it, it'll display a message of "ownage"
Idk, I was bored and a friend told me I fail :frown: - So I sent him this 
Coded in C# 08'
Oh, and to suit most computers, its for .NET Framework 2 and above.
Happy whatevering!
Source:
PHP Code:
namespace Hai
{
public partial class Form1 : Form
{
public string lolatyou; // string
public string yourname; // string
public Form1()
{
InitializeComponent();
lolatyou = "lolatyou"; // value of string
//------------------------------------------------//
/* EDIT HERE, AND ONLY HERE!!!!!!111111111111111one
* This is where you enter your name: */
yourname = "YOUR_NAME_HERE";
/* Now compile and run! Send to heaps of cunts. *///
//------------------------------------------------//
}
private void Form1_Load(object sender, EventArgs e)
{
while (lolatyou == "lolatyou") // turn on cuntalizer (lol)
{
MessageBox.Show(yourname + " fucking owns you cunt!", "Hello,");
}
}
}
}