Hi all, Im very newbie in C#. I have a work in our new project. I have given an application which will make the telnet, ssh etc to the remote hosts. I really dont have any idea in which language is written. But the folder contains some dll's i understood that they are using the dlls. I have given the task that whether I can use the dlls in C# to connect the remote host. I dont know how to proceed If you want I can share the libraries also.. Can anyone help me in this..
Any help is of very grt help..
Thanks in advance.
Loading
Sam HobbsPosted Jan 13, 2011, 2:06 PM
Jaish MathewsPosted Jan 13, 2011, 4:12 AM
If your are using VisualStudio, it's easy to communicate Interop Service. Add Ref. to that dll by right click. Then a wrapper class will be created automatically . This will do your interop service activities.
Naveen SongaraPosted Jan 13, 2011, 12:56 AM
Sam HobbsPosted Jan 12, 2011, 10:41 AM
Naveen: A DLL can have an entry point; see DllMain Entry Point. A C# library project application exists as a DLL (I think) when built and it must be called using managed code as an object, not as a regular DLL. I assume that Mahesh is asking about a regular DLL; a DLL that has unmanaged code. C# cannot create code for a DLL with unmanarged code.
Naveen SongaraPosted Jan 12, 2011, 2:03 AM