0

I am very new to Visual C# and can't figure out how to install the wiimote library. Can someone tell me how to do so.

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
Omar
  • 2,155
  • 4
  • 24
  • 38
  • "The Wiimote library" is not something that's out-of-the-box with C# development tools and isn't necessarily well-known, so could you provide a link to clarify what you're talking about and give a few examples of what you've tried? – nlawalker Jun 10 '10 at 15:05
  • @nlawalker heres a link about what I am talking about: http://blogs.msdn.com/b/coding4fun/archive/2007/03/14/1879033.aspx – Omar Jun 10 '10 at 15:47

1 Answers1

1

You need to add a reference to the dll.

In the project you want to use the library in open the Solution Explorer. Expand it until you see something like:

Solution 'MyApplication' (1 project)
-  MyApplication
   + Properties
   + References
   + ...

Right click on the References section, select "Add Reference..." then change to the Browse tab. Browse to the folder where you've installed the wiimote library and select the dll. Click "OK" and you should be done.

ChrisF
  • 134,786
  • 31
  • 255
  • 325