Winify – Diff between revs 19 and 28

Subversion Repositories:
Rev:
Show entire fileRegard whitespace
Rev 19 Rev 28
Line 5... Line 5...
5   5  
6 namespace Winify 6 namespace Winify
7 { 7 {
8 internal class Program : IDisposable 8 internal class Program : IDisposable
9 { -  
10 #region Static Fields and Constants -  
11   -  
12 private static readonly Mutex Mutex = new Mutex(true, Constants.AssemblyGuid); -  
13   -  
14 private static Form _form; -  
15   -  
16 #endregion -  
17   9 {
Line 18... Line 10...
18 #region Constructors, Destructors and Finalizers 10 #region Constructors, Destructors and Finalizers
19   11  
20 public void Dispose() 12 public void Dispose()
Line 50... Line 42...
50 IntPtr.Zero, 42 IntPtr.Zero,
51 IntPtr.Zero); 43 IntPtr.Zero);
52 } 44 }
Line 53... Line 45...
53   45  
-   46 #endregion
-   47  
-   48 #region Static Fields and Constants
-   49  
-   50 private static readonly Mutex Mutex = new Mutex(true, Constants.AssemblyGuid);
-   51  
-   52 private static Form _form;
-   53  
54 #endregion 54 #endregion
55 } 55 }
56 } 56 }