Where can you find docs on the layout of a c# program

  • Thread starter Thread starter george r smith
  • Start date Start date
G

george r smith

Saw a term "global scope in a program" so where is this global scope and I
guess that brings up the question where can I find the the definition of the
layout of a C# program like:

using System;

namespace

class 1
class 2

main etc
 
george r smith said:
Saw a term "global scope in a program" so where is this global scope and I
guess that brings up the question where can I find the the definition of the
layout of a C# program like:

using System;

namespace

class 1
class 2

main etc

It's all in the specification, which is available at
http://www.ecma-international.org or is in the MSDN.
 
Back
Top