/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy
Publisher: Sybex;
ISBN: 0782129110
*/
/*
Example2_5.cs is the same as Example2_4.csc, except
myValue is assigned a value before it is referenced
*/
publicclass Example2_5
{
publicstaticvoid Main()
{
int myValue = 2;
System.Console.WriteLine(myValue); // no error
}
}