AEMManager.Program.AEMDocumentation_Click C# (CSharp) Method

AEMDocumentation_Click() static private method

static private AEMDocumentation_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return 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();
        }