Code Search for Developers
 
 
  

Program.cs from Oscill8 at Krugle


Show Program.cs syntax highlighted

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace PostInstall
{
	static class Program
	{
		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main(string[] args)
		{
			Application.EnableVisualStyles();
			Application.SetCompatibleTextRenderingDefault(false);
			Application.Run(new PostInstallForm(args));
		}
	}
}



See more files for this project here

Oscill8

Oscill8 is a suite of tools for analyzing dynamical systems which concentrates on understanding how the dynamical behavior depends on the parameters using bifurcation theory and reaction network theory.

Project homepage: http://sourceforge.net/projects/oscill8
Programming language(s): C,C#,C++
License: other

  Properties/
    AssemblyInfo.cs
    Resources.Designer.cs
    Resources.resx
    Settings.Designer.cs
    Settings.settings
  PostInstall.csproj
  PostInstallForm.Designer.cs
  PostInstallForm.cs
  PostInstallForm.resx
  Program.cs