Beispiel #1
0
        static void Main(string[] args)
        {
            DataServiceClient service = new DataServiceClient();
            Person p = service.GetPerson();
            Console.WriteLine(p);

            int a = 5, b = 3;
            service.Swap(ref a, ref b);
            Console.WriteLine("{0} {1}",a,b);

            Person[] members = service.GetAllMembers();
           

            Console.ReadLine();
        }