Пример #1
0
        static void Main(string[] args)
        {
            TFS2012Client client = new TFS2012Client("", "", "", "") ;

            Task<IEnumerable<TFSCollection>> r = client.GetCollections();
            r.Wait();

            var rs = r.Result;

            Console.ReadLine();
        }
Пример #2
0
        static void Main(string[] args)
        {
            TFS2012Client client = new TFS2012Client("", "", "", "");


            Task <IEnumerable <TFSCollection> > r = client.GetCollections();

            r.Wait();

            var rs = r.Result;

            Console.ReadLine();
        }