using System.Diagnostics;
namespace Signature
{
public class User<T>
{
static readonly string baseUrl = "http://en.wikipedia.org/wiki/";
public static void Talk()
{
Process.Start(baseUrl + "User talk:" + typeof(T).Name);
}
}
}