AEMManager.Program.AEMDocumentation_Click C# (CSharp) 메소드

AEMDocumentation_Click() 정적인 개인적인 메소드

static private AEMDocumentation_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        static void AEMDocumentation_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process p = new System.Diagnostics.Process();
              p.StartInfo.FileName = "https://docs.adobe.com/";
              p.Start();
        }