For review, the complete version of Default.aspx.cs for this lesson, including comments, is displayed 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;
using System.Threading;
//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
{
Proctected void Button1_Click(object sender, EventArgs e)
{
Point[] points = new Point[10];//array of points
for(int i = 0; < points.length; i++ )
{
//line below fills array with new points whose x and y co ordinates are
//random
points[i] = new Point...