added samples
[windows-sources.git] / sdk / samples / FrameworkSamples / NETCF / Applications / UptimeMonitorSample / uptimemonitorclient / program.cs
blobaea278c114a9f9599025bedfa3cee6eb22c9db62
1 //---------------------------------------------------------------------
2 // This file is part of the Microsoft .NET Framework SDK Code Samples.
3 //
4 // Copyright (C) Microsoft Corporation. All rights reserved.
5 //
6 //This source code is intended only as a supplement to Microsoft
7 //Development Tools and/or on-line documentation. See these other
8 //materials for detailed information regarding Microsoft code samples.
9 //
10 //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
11 //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
12 //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
13 //PARTICULAR PURPOSE.
14 //---------------------------------------------------------------------
15 namespace Microsoft.Samples.WCF.UptimeMonitor.Client {
17 using System;
18 using System.Windows.Forms;
20 static class Program {
21 /// <summary>
22 /// The main entry point for the application.
23 /// </summary>
24 [MTAThread]
25 static void Main() {
26 Application.Run(new MainForm());