diff options
author | sr55 <[email protected]> | 2010-02-20 21:59:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-02-20 21:59:23 +0000 |
commit | b59b7b8733533aed4b97da6679e455df63049e23 (patch) | |
tree | 9035a3438491bc3d8290af9bced2320da11edb21 /win/C#/Program.cs | |
parent | b9d00019295781bed79eca280bac798b7bb7c64f (diff) |
WinGui:
- Some tweaks to the StyleCop Settings File.
- Some abbreviations added to the ReSharper config file.
- Some more warnings cleaned up.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3130 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Program.cs')
-rw-r--r-- | win/C#/Program.cs | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 282f9f528..805d339af 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -1,23 +1,25 @@ -/* Program.cs
-
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.fr>.
- It may be used under the terms of the GNU General Public License. */
-
-using System;
-using System.Windows.Forms;
-using System.IO;
-using Handbrake.Presets;
+/* Program.cs
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
namespace Handbrake
{
- static class Program
+ using System;
+ using System.IO;
+ using System.Windows.Forms;
+ using Presets;
+
+ /// <summary>
+ /// HandBrake Starts Here
+ /// </summary>
+ public static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
- static void Main()
+ public static void Main()
{
Screen scr = Screen.PrimaryScreen;
if ((scr.Bounds.Width < 1024) || (scr.Bounds.Height < 620))
@@ -40,5 +42,4 @@ namespace Handbrake }
}
}
-
}
\ No newline at end of file |