vote up 0 vote down star
1

I am working on an OpenGL project for a computer graphics course, and I have not been actively programming for around a years time (military training). I am drawing an absolute blank on how to include a source file in C#. I know in C++ you use #include . I have no clue how to use the figure class I made in my form.

flag

2 Answers

vote up 0 vote down
  1. Add the Tao.OpenGL DLL as a project reference.
  2. Add any using statements at the top of your C# file, such as:

    using Tao.OpenGL;

The first option is what actually "includes" the DLL so it can be found. The second step is technically optionally, but without it, you'll need to make every GL call like Tao.OpenGL.GL.GlMethodGoesHere(); instead of just GL.GlMethodGoesHere();

link|flag
vote up 0 vote down

haha, I meant including my own class that I made, but I figured it out. Had to use "using myClass," not the file name..

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.