using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;namespace RefOutTest
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class RefOutText: System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label label1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null; public RefOutText()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent(); //
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
} /// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null) 
{
components.Dispose();
}
}
base.Dispose( disposing );
} #region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
// 
// button1
// 
this.button1.Location = new System.Drawing.Point(216, 16);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(120, 40);
this.button1.TabIndex = 0;
this.button1.Text = "Show Output";
this.button1.Click += new System.EventHandler(this.button1_Click);
// 
// label1
// 
this.label1.Location = new System.Drawing.Point(104, 104);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(376, 264);
this.label1.TabIndex = 1;
// 
// RefOutText
// 
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(600, 373);
this.Controls.Add(this.label1);
this.Controls.Add(this.button1);
this.Name = "RefOutText";
this.Text = "Form1";
this.ResumeLayout(false); }
#endregion /// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main() 
{
Application.Run(new RefOutText());
}

void Square( int x )
{
x = x * x;
label1.Text +=
"Value of variable within Square, " +
"after calculation: " + x + "\n";
} void SquareRef( ref int x )
{
x = x * x;
label1.Text +=
"Value of variable within Square, " +
"after calculation: " + x + "\n";
} void SquareOut(out int x )
{
x = 6;
x = x * x;
label1.Text +=
"Value of variable within Square, " +
"after calculation: " + x + "\n";
} private void button1_Click(object sender, System.EventArgs e)
{
int y = 5;
int z; label1.Text =
"Value of y before exiting SquareTef: " + y + "\n"; SquareRef( ref y );
label1.Text +=
"Value of y after exiting SquareRef: " + y + "\n"; label1.Text +=
"\nValue of z before calling Squareout: " +
"uninitialized\n"; SquareOut( out z );
label1.Text +=
"Value of z after exiting SquareOut: " + z + "\n"; label1.Text +=
"___________________________________\n\n"; label1.Text +=
"Value of y before calling Square: " + y + "\n"; Square( y );
label1.Text +=
"Value of y after exiting Square " + y + "\n"; label1.Text +=
"\nValue of z before calling Square: " + z + "\n"; Square( z );
label1.Text +=
"Value of z after exiting Square: " + z + "\n"; }
}
}