在 C 中实现内核,在 C# 中实现 Shell
是否可以用一种语言实现MVC架构的控制,用另一种语言实现视图。
我正在寻找一种在 C 中拥有“内核”并在 C# 中拥有“外壳”的模式。
或者就像 C 中的“服务器”和 C# 中的“客户端”(但在同一台机器上)。
我想到的唯一方法是使用管道或套接字在两个进程之间进行通信。
有更好的方法吗? (我确信有,但它是什么?)
Eidt:我发现了多种方法MSDN 中。但不知道什么是理想的。
Is it possible to implement MVC architecture's control in one language and view in other language.
What I'm looking for is a pattern to have a "kernel" in C and the "shell" in C#.
Or like "server" in C and "client" in C# (but in the same machine).
Only approach I come up with is to use pipes or sockets to communicate between the two processes.
Is there a better approach ? (I'm sure there is but What is it ? )
Eidt : I found a number of approaches here in MSDN.but wonder what would be the ideal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
共享内存可能是一个解决方案: MSDN - 创建命名共享内存
但请注意,处理共享内存比处理“更高级别”构造要棘手得多像插座一样。
干杯。基思.
Shared memory might be a solution: MSDN - Creating Named Shared Memory
But beware that dealing with shared memory is a LOT trickier than dealing with "higher level" constructs like sockets.
Cheers. Keith.