Ejemplo n.º 1
0
        /// <summary>
        /// Main method, to run this code example as a standalone application.
        /// </summary>
        public static void Main()
        {
            GetAllCompanies codeExample = new GetAllCompanies();

            Console.WriteLine(codeExample.Description);
            codeExample.Run(new DfpUser());
        }
        /// <summary>
        /// Main method, to run this code example as a standalone application.
        /// </summary>
        public static void Main()
        {
            GetAllCompanies codeExample = new GetAllCompanies();

            Console.WriteLine(codeExample.Description);
            try {
                codeExample.Run(new DfpUser());
            } catch (Exception e) {
                Console.WriteLine("Failed to get companies. Exception says \"{0}\"",
                                  e.Message);
            }
        }