Application.Run : Application Event : Development Class C# Source Code


Custom Search

C# Source Code » Development Class » Application Event »

 

Application.Run








    
 




using System.Windows.Forms;
   
class RunFormBetter
{
     public static void Main()
     {
          Form form = new Form();
   
          form.Text = "My Very Own Form";
   
          Application.Run(form);
     }
}

 
    
   
  
   







HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo Development Class
» Application Event