eternalmatt
eternalmatt

Reputation: 3564

Loading .dll to use in Visual Studio 2010

complete newb quesiton here, but I'm new to C# and Visual Studio 2010.

How do I load .dll's into Visual Studio 2010 so I can write C# programs using their methods?

More specifically, I'm trying to write a twitter application using TweetSharp that will be run via command line.

Upvotes: 1

Views: 6679

Answers (1)

Joel Coehoorn
Joel Coehoorn

Reputation: 415600

Assuming this is a .Net dll, right click on the special "References" folder for your project in Visual Studio and choose "Add Reference". This should (eventually) open a dialog you can use to browse to the dll file. Depending on the dll it's probably also a good idea to first add the dll to your project as a content file, so that it can eventually be deployed with the rest of your app.

Upvotes: 5

Related Questions