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

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
 
J

Jon Skeet [C# MVP]

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.
 
C

Cybertof

What do you mean with "definition of a layout" ?

UML Class diagram ?

Cybertof.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top