static void Main(string[] args) { StringBuilder sb = new StringBuilder(); sb.AppendLine("ZylLib.UnionTypes.ConsoleExample"); sb.AppendLine(); UnionTypesExample.Output(sb); // show. Console.WriteLine(sb.ToString()); }
private void btnInfo_Click(object sender, RoutedEventArgs e) { StringBuilder sb = new StringBuilder(); sb.AppendLine("ZylLib.UnionTypes.SilverlightExample"); sb.AppendLine(); UnionTypesExample.Output(sb); // show. txtOut.Text = sb.ToString(); }