[Request]User functions in C#

03/31/2010 21:16 shimo diaz#1
OK I am currently studying 2 languages AHK and C#
in AHK there are library functions
Is there any similar method in C#?
If there is can anyone please explain it to me?

note: Sorry I know I am being a bother but I need it explained from Zero!:o
04/02/2010 00:53 flaMe~#2
I don't know what AHK is or what these library functions are, but I will try my best to understand.

In C# you have the libraries from the .NET framework.
When you're writing programs you can call from these libraries.

You do this by using a piece of code that tells the computer that you are going to be using code declared from that certain part of the library at the top of your program:

Code:
using System;
or

Code:
using System.Windows.Forms;
This list goes on. You will probably see them when you start a new project in MSVC and you look at all the skeleton code inserted for you.

Again, I don't know if this is what you were after... But I hope I helped.

[Only registered and activated users can see links. Click Here To Register...]