Download from www.red-gate.com/products/dotnet-development/reflector/
The source code for the test DLL used above:
using System;
namespace test1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("test1 console app");
var p = new Program();
p.Run();
}
void Run()
{
Console.WriteLine("hello");
}
}
}