i wondering how can use third party library in c#? instance, coming python world, in simple add third party module simple import statement. how can add third party dll or libraries c#?
in visual studio, right click on references folder under project in solution explorer , click "add reference". add whatever dll want , click ok. after add 1 or more using
statements @ top corresponding library namespaces.
to add project references, it's similar python. again in solution explorer, right click on solution , "add" "existing project". after adding existing project you'll see in solution explorer. can add using
statement @ top name of relevant namespaces project referenced.
Comments
Post a Comment