I want to learn C# initially via console applications. I would like to write
some reusable code that I can 'call' in any application. For example, code to
position the cursor and use the various colour attributes wrapping up some of
the methods of the System.Console library.
What I am not clear on is how I can write these methods in a 'standalone'
file so that I can call them in apps with the 'using' statement. I'm a little
confused as to whether I have to have a Main() method in the file containing
my calleable code.
Sorry if this is basic. I'm using Visual C# Express edition.
Thanks