从 API 获取 thrift 文件并构建 .NET dll 文件
我不知道如何为 C# 编译 thrift 文件。 我读过,“thrift 文件可以编译为特定于语言的接口,适用于各种不同的编程平台(Java、PHP、C/C++、Cocoa、Perl、C#、Ruby 等)。”
我在看这里:http://www.markhneedham。 com/blog/2008/08/29/c-thrift-examples/ 就像我必须编译编译器,然后从提供的 thrift 文件构建 C# 版本。
关于如何做到这一点有什么想法吗?
I can't figure out how to compile thrift files for C#. I've read, "thrift files which can then be compiled down to language-specific interfaces for a wide variety of different programming platforms (Java, PHP, C/C++, Cocoa, Perl, C#, Ruby, etc.)."
I was looking here: http://www.markhneedham.com/blog/2008/08/29/c-thrift-examples/ and it's like I have to compile the compiler, and then build the C# version from the thrift files provided.
Any ideas on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,没错,您首先使用 Cygwin 环境编译 Win32 编译器,然后依次使用该编译器创建 Thrift 语言界面。
Yes, that's right, you first compile the Win32 compiler using a Cygwin environment and then in turn use that compiler to create Thrift language interfaces.
您可以从以下位置下载 thrift 编译器可执行文件
http://thrift.apache.org/download/
You can download thrift compiler executable from
http://thrift.apache.org/download/
我正在搜索你的问题,发现
I was searching your question and I found this useful topic. May this helping :)