Click here to Skip to main content
15,886,004 members
Articles / Programming Languages / C#

Irony - .NET Compiler Construction Kit

Rate me:
Please Sign up or sign in to vote.
4.97/5 (86 votes)
4 Jan 2008MIT19 min read 294.2K   3.2K   201  
Introduction to Irony - a new technology of parser/compiler construction for .NET.
namespace Irony.GrammarExplorer {
  partial class fmShowException {
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.IContainer components = null;

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    protected override void Dispose(bool disposing) {
      if (disposing && (components != null)) {
        components.Dispose();
      }
      base.Dispose(disposing);
    }

    #region Windows Form Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent() {
      this.txtException = new System.Windows.Forms.TextBox();
      this.SuspendLayout();
      // 
      // txtException
      // 
      this.txtException.AcceptsReturn = true;
      this.txtException.AcceptsTab = true;
      this.txtException.Dock = System.Windows.Forms.DockStyle.Fill;
      this.txtException.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      this.txtException.HideSelection = false;
      this.txtException.Location = new System.Drawing.Point(0, 0);
      this.txtException.Multiline = true;
      this.txtException.Name = "txtException";
      this.txtException.ReadOnly = true;
      this.txtException.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
      this.txtException.Size = new System.Drawing.Size(764, 334);
      this.txtException.TabIndex = 1;
      // 
      // fmShowException
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.ClientSize = new System.Drawing.Size(764, 334);
      this.Controls.Add(this.txtException);
      this.Name = "fmShowException";
      this.Text = "Exception";
      this.ResumeLayout(false);
      this.PerformLayout();

    }

    #endregion

    private System.Windows.Forms.TextBox txtException;
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior) Microsoft
United States United States
25 years of professional experience. .NET/c#, databases, security.
Currently Senior Security Engineer, Cloud Security, Microsoft

Comments and Discussions