GSM 调制解调器库
我正在寻找用 C# 编写的 SMS 库,任何人都有最好的库并且它是免费的? 我可以在 Linux 中找到超过 1 个,但我找不到任何用 C# 编写的免费内容
I'm looking for SMS library that is written in c#, anyone the best library for it and it's free ? I can find more than 1 in Linux, but I'm can't found anything that is written in c# and free
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
大多数 GSM 调制解调器都会附带一个自己的库。 您实际上并不需要用 C# 编写该库。 一般来说,它会在dll或exe中。 如果它是使用 C++ 编写的 dll,您仍然可以通过 p/invoke 调用它的函数。 您只需要知道函数签名即可正确发送和检索数据。 检查文档。 如果它是一个 exe,很可能是基于命令行的,那么您可以使用 Process.Start() 来调用它,并通过参数输入您想要发送的内容。
Most GSM modem will come with a library of it's own. You don't really need the library to be written in C#. Generally it will be in dll or exe. If it's a dll written using C++, you can still call it's function via p/invoke. You just need to know the function signature in order to send and retrieve data from it properly. Check the documentation. If it's an exe, most likely it commandline based, then you can call it by using Process.Start() and putting in what ever you want to send via the argument.
查看 GSMComm。
http://www.scampers.org/steve/sms/index.htm
Check out GSMComm.
http://www.scampers.org/steve/sms/index.htm