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

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);
}
}
主站蜘蛛池模板: 通州市| 澄迈县| 麻栗坡县| 岫岩| 工布江达县| 叶城县| 水城县| 满洲里市| 绵竹市| 灵丘县| 株洲市| 大城县| 漯河市| 祥云县| 漾濞| 台中市| 鄂伦春自治旗| 琼海市| 名山县| 民和| 张家川| 察雅县| 策勒县| 平罗县| 苍山县| 博爱县| 萍乡市| 尚志市| 高尔夫| 吉木萨尔县| 静宁县| 永仁县| 宁乡县| 阳泉市| 彭州市| 卢氏县| 霍州市| 开阳县| 平舆县| 西畴县| 密山市|