comparison Chronosv2/source/SingleInstance.cs @ 14:741981715d94

Initial review and translations
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 18:59:30 +0700
parents 443821e55f06
children
comparison
equal deleted inserted replaced
13:87905693f506 14:741981715d94
1 namespace Chronos 1 using System;
2 using System.Collections.Generic;
3 using System.Diagnostics.CodeAnalysis;
4 using System.Runtime.Remoting;
5 using System.Runtime.Remoting.Channels;
6 using System.Runtime.Remoting.Channels.Ipc;
7 using System.Runtime.Serialization.Formatters;
8 using System.Threading;
9 using System.Windows;
10
11 namespace Chronos
2 { 12 {
3 using System;
4 using System.Collections.Generic;
5 using System.Diagnostics.CodeAnalysis;
6 using System.Runtime.Remoting;
7 using System.Runtime.Remoting.Channels;
8 using System.Runtime.Remoting.Channels.Ipc;
9 using System.Runtime.Serialization.Formatters;
10 using System.Threading;
11 using System.Windows;
12
13 /// <summary>
14 /// http://www.fishbowlclient.com/
15 /// </summary>
16 public static class SingleInstance 13 public static class SingleInstance
17 { 14 {
18 #region · Consts · 15 #region · Consts ·
19 16
20 private const string RemoteServiceName = "SingleInstanceApplicationService"; 17 private const string RemoteServiceName = "SingleInstanceApplicationService";