To Examples
ConsBSGen2 Example, source code file Form1.cs
using System; using System.Windows.Forms; ///
/// Construct a sentence using a random verb, adjective, /// and noun that sounds (until closer examination) like a /// sentence written by an IT consultant. ///
namespace BSConsultGen2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnShow_Click(object sender, EventArgs e) { string verb, adjective, noun, sentence; // Create a Random object with time dependent seed. Random r = new Random(); // Choose random verb. switch (r.Next(1, 11)) { case 1: verb = "architect"; break; case 2: verb = "e-enable"; break; case 3: verb = "facilitate"; break; case 4: verb = "harness"; break; case 5: verb = "incentivize"; break; case 6: verb = "leverage"; break; case 7: verb = "optimize"; break; case 8: verb = "synergize"; break; case 9: verb = "unleash"; break; default: verb = "whiteboard"; break; } // Choose random adjective. switch (r.Next(1, 11)) { case 1: adjective = "24/7"; break; case 2: adjective = "collaborative"; break; case 3: adjective = "cutting-edge"; break; case 4: adjective = "dynamic"; break; case 5: adjective = "end-to-end"; break; case 6: adjective = "granular"; break; case 7: adjective = "intuitive"; break; case 8: adjective = "mission-critical"; break; case 9: adjective = "plug-and-play"; break; default: adjective = "seamless"; break; } // Choose random noun. switch (r.Next(1, 11)) { case 1: noun = "action items"; break; case 2: noun = "applications"; break; case 3: noun = "bandwidth"; break; case 4: noun = "deliverables"; break; case 5: noun = "infrastructures"; break; case 6: noun = "markets"; break; case 7: noun = "products"; break; case 8: noun = "niches"; break; case 9: noun = "schemas"; break; default: noun = "synergies"; break; } // Compose final sentence. sentence = "Our consultants can help you " + verb + " " + adjective + " " + noun + "."; // Display final sentence. txtSentence.Text = sentence; } } }
ConsBSGen2 Example, source code file Form1.Designer.cs
namespace BSConsultGen2 { partial class Form1 { ///
/// Required designer variable. ///
private System.ComponentModel.IContainer components = null; ///
/// Clean up any resources being used. ///
///
true if managed /// resources should be disposed; otherwise, false. /// protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code ///
/// Required method for Designer support - do not modify /// the contents of this method with the code editor. ///
private void InitializeComponent() { this.txtSentence = new System.Windows.Forms.TextBox(); this.btnShow = new System.Windows.Forms.Button(); this.SuspendLayout(); // // txtSentence // this.txtSentence.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtSentence.Location = new System.Drawing.Point(12, 12); this.txtSentence.Multiline = true; this.txtSentence.Name = "txtSentence"; this.txtSentence.Size = new System.Drawing.Size(331, 83); this.txtSentence.TabIndex = 0; // // btnShow // this.btnShow.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnShow.Location = new System.Drawing.Point(12, 101); this.btnShow.Name = "btnShow"; this.btnShow.Size = new System.Drawing.Size(331, 35); this.btnShow.TabIndex = 1; this.btnShow.Text = "Show Consultant BS Sentence"; this.btnShow.UseVisualStyleBackColor = true; this.btnShow.Click += new System.EventHandler(this.btnShow_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(350, 156); this.Controls.Add(this.btnShow); this.Controls.Add(this.txtSentence); this.Name = "Form1"; this.Text = "ConsultBSGen2 Example"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TextBox txtSentence; private System.Windows.Forms.Button btnShow; } }