Does C# have header files like C/C++ ??
Printable View
Does C# have header files like C/C++ ??
Short answer: No.
Long answer: What are you looking for?
I have a few algorithms I would to store in another file, so they don't clutter my main file. Can I use modules then, like in VB?
there are no modules in c#
but you can put all your functions inside a class, it would look about the same :rolleyes:
use an abstract class and declare everythign in it as staticQuote:
Originally Posted by CyberCarsten
Code:public abstract class foo
{
public static string bleh="mendhak is a frog";
public static int testYourMight ()
{
return 42;
}
}