MichaelRed
Programmer
New & confused. I am T R Y I N G to grow up to these new languages. I have the program (C# Express) and the Book(C# 2008) from Wrox.
as the old joke goes:
so far, so good
Chapter 2!!
Example from ye olde booke:
the comments / error lines at the top added as the results from 'running' the code.
Anyone patient and merciful enough to try to get me past this?
MichaelRed
as the old joke goes:
so far, so good
Chapter 2!!
Example from ye olde booke:
Code:
using System;
//CS(3,10) error CS1001: Identifier Expected
//CS(7,10) error CS1518: Expected class, delegate, enum, interface or struct
//CS(14,1) error CS1022: Type or namespace definition, of end-of-file expected
namespace.Wrox.ProCSharp.Basics
{
Class MyFirstCSharpClass
{
static void Main()
{
Console.Writeline("This usn't at all like Java!");
Console.Readline();
return;
}
}
}
the comments / error lines at the top added as the results from 'running' the code.
Anyone patient and merciful enough to try to get me past this?
MichaelRed