adding dll and call its functions
C#
2
Posts
2
Posters
0
Views
1
Watching
-
i want to add a dll which have two function one is for reading data from the parallel port and one is for writing data to parallel port using c#. how i will use this dll and call its function please tell me.......
open a new project select class type in your code make sure the functions are public class bulid ths solution save the project close the project open your project use the Using to call the dll like using projectdll; create a reference type like project.Adddate mydate=new project.adddate you can now use the instatiated object mydate.adding(rttr,teert); if it returns a string declear a string reference type s=mydate.adding(rttr,teert);