- Apr 4, 2000
- 61
- 0
- 0
I want to include other .cs files in my project.
I can't figure this out easily
I want the equivalent of
c++: #include
java: import
I can't figure this out easily
I want the equivalent of
c++: #include
java: import
Originally posted by: MrChad
If they are in the same package (namespace?), you shouldn't need to do anything (just add the .cs files to your project).
If they are not in the same package/namespace, import the namespace with the using keyword.
Guide
Originally posted by: Sparky Anderson
You need an object of Class2 to be able to call test....