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

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);
}
}
主站蜘蛛池模板: 莱阳市| 渑池县| 广宁县| 化州市| 阿坝| 新郑市| 林芝县| 沙雅县| 漯河市| 汉寿县| 儋州市| 乡城县| 华亭县| 灯塔市| 集安市| 谷城县| 苗栗市| 专栏| 盘山县| 北川| 大兴区| 盘山县| 海门市| 根河市| 新蔡县| 定南县| 本溪市| 娱乐| 麟游县| 武鸣县| 南汇区| 洛南县| 东方市| 辽宁省| 凤山市| 衡阳县| 禄劝| 潮安县| 平泉县| 安康市| 黄浦区|