source: trunk/Utilities/Miscellaneous/ComIsolation01/Client/Program.cs

Last change on this file was 531, checked in by roman, 8 years ago
File size: 527 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace Client
8{
9    class Program
10    {
11        [STAThread]
12        static void Main(string[] args)
13        {
14            ServerLib.TestObject testObject = new ServerLib.TestObject();
15            string path;
16            int bitness;
17            testObject.TestMethod(out path, out bitness);
18            Console.WriteLine(string.Format("{0}, {1}", path, bitness));
19        }
20    }
21}
Note: See TracBrowser for help on using the repository browser.