/// <summary> /// Main method, to run this code example as a standalone application. /// </summary> public static void Main() { GetAllUserTeamAssociations codeExample = new GetAllUserTeamAssociations(); 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() { GetAllUserTeamAssociations codeExample = new GetAllUserTeamAssociations(); Console.WriteLine(codeExample.Description); try { codeExample.Run(new DfpUser()); } catch (Exception e) { Console.WriteLine("Failed to get user team associations. Exception says \"{0}\"", e.Message); } }