snmp in c#

  • Thread starter Thread starter Deleo
  • Start date Start date
D

Deleo

Hello im writing a program that need to use snmp to communicate with other
devices.
Im having trouble finding any snmp support in .NET for c#, can anyone please
point a direction to where i might find it or give me a little code piece?
 
Yes, Deleo. There isn't SNMP support within .NET framework. But we can find
some 3rd party librarys that can do this. Ignacio has given us a good link.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Ok, I didnt know that .NET didnt directly support SNMP.
I have tried net-snmp and that didnt work well, and I tried that link
Ignacio gave and i found it to be lack in documentation.

Can i use c++ or C code in c# projects?
Cause I have the code in C language.
 
Hi Deleo,

If you need to use C++ or C code in C# project, you have to first build the
C++ and C code into DLLs and then call them from the C# project using
interop.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top