GSM 调制解调器库

发布于 2024-07-09 17:44:15 字数 86 浏览 4 评论 0原文

我正在寻找用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

枕花眠 2024-07-16 17:44:15

大多数 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文