官术网_书友最值得收藏!

Chapter review

For review, the complete version of the Default.aspx.cs file for this chapter, including comments, is shown in the following code block:

//using is a directive
//System is a name space
//name space is a collection of features that our needs to run
using System;
//public means accessible anywhere
//partial means this class is split over multiple files
//class is a keyword and think of it as the outermost level of grouping
//:System.Web.UI.Page means our page inherits the features of a Page
public partial class _Default : System.Web.UI.Page
{
protected void Button1_Click(object sender, EventArgs e)
{
int x = 25, y = 34;//declare and set two variables
sampLabel.Text = $"x={x}, y={y}";//display variables
GenMethods.Swap (ref x, ref y);//swap values
sampLabel.Text += $"<br>x={x}, y={y}";//display swapped values
sampLabel.Text += GenMethods.Compare (x, y);
}
}
主站蜘蛛池模板: 神池县| 屏山县| 滕州市| 泽普县| 涿州市| 灵石县| 连南| 和静县| 南雄市| 彭山县| 怀化市| 西吉县| 周口市| 来安县| 通辽市| 白银市| 大渡口区| 武平县| 泽州县| 岳池县| 浦江县| 榆中县| 洱源县| 临沂市| 英吉沙县| 石首市| 萨迦县| 承德市| 平山县| 平和县| 新化县| 绿春县| 峨山| 洞头县| 治县。| 晋宁县| 鄂托克前旗| 手游| 孙吴县| 普陀区| 崇明县|