As the question stated, how do i do it. When ever i try to setup the icon, it always comes out wierd. Below is my code that i use
System.Drawing.Icon icon = new System.Drawing.Icon("Game.ico");
MemoryStream ms = new MemoryStream();
icon.Save(ms);
byte[] data = ms.ToArray();
Render.SetIcon((uint)icon.Width, (uint)icon.Height, data);
icon.Dispose();
ms.Close();