User:Svick/Signature

From WikiProjectMed
Jump to navigation Jump to search
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);
    }
  }
}