Name: Anonymous 2011-08-14 23:38
So in C++ I could do
i.e. I could keep my class definition and the code for the methods separate, but I can't figure out how to do the same thing in C#. Do I really have to use "partial class A {}" in front of everything?
class A {
int B();
}
int A::B()
{
return 1;
}i.e. I could keep my class definition and the code for the methods separate, but I can't figure out how to do the same thing in C#. Do I really have to use "partial class A {}" in front of everything?