using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Scope { // Fig. 7.12: ScopeTest.cs // Application to test class Scope. public class ScopeTest { // application starting point public static void Main(string[] args) { scope testScope = new scope(); testScope.Begin(); } // end Main } // end class ScopeTest }