Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找用 c# 编写的 SMS 库,任何人都是最好的库并且它是免费的吗?我可以在 Linux 中找到超过 1 个,但我找不到任何用 c# 编写且免费的内容
查看 GSMComm。
http://www.scampers.org/steve/sms/index.htm
大多数 GSM 调制解调器都带有自己的库。您实际上并不需要用 C# 编写库。通常它会在 dll 或 exe 中。如果它是使用 C++ 编写的 dll,您仍然可以通过 p/invoke 调用它的函数。您只需要知道函数签名即可正确发送和检索数据。检查文档。如果它是一个 exe,很可能是基于命令行的,那么您可以使用 Process.Start() 调用它,并通过参数输入您想要发送的任何内容。