GSM modem library

I'm looking for an SMS library written in C #, any best library for it, and free? I can find more than 1 in Linux, but I can not find anything written in C # and free

+3
source share
2 answers

Most GSM modems will have their own library. You do not need a library to be written in C #. Usually it will be in dll or exe. If it's a dll written using C ++, you can still call it via p / invoke. You just need to know the function signature in order to properly send and retrieve data from it. Check the documentation. If this exe is most likely a command line, then you can call it with Process.Start () and insert what you want to send through the argument.

+3
source
+3
source

All Articles