有关基于事件的组件的帮助
我已经开始研究基于事件的组件 (EBC),这是 Ralf Wesphal< 目前正在探索的一种编程方法/a> 尤其是在德国。这是构建软件解决方案的一种非常有趣且有前途的方法,并且接近能够像乐高一样将软件组件粘在一起的古老想法:)
一个很好的起点是第 9 频道的视频 此处,Google Group on EBC< 上有很多德语讨论/a>.然而,我正在寻找更具体的例子——虽然这些想法看起来很棒,但我发现很难将它们转化为真正的代码,而不仅仅是一个微不足道的项目。
有谁知道任何好的代码示例(最好是 C#),或者有更多讨论 EBC 的好网站吗?
I have started to look at Event-Based Components (EBCs), a programming method currently being explored by Ralf Wesphal in Germany, in particular. This is a really interesting and promising way to architect a software solution, and gets close to the age-old idea of being able to stick software components together like Lego :)
A good starting point is the Channel 9 video here, and there is a fair bit of discussion in German at the Google Group on EBCs. I am however looking for more concrete examples - while the ideas look great, I am finding it hard to translate them into real code for anything more than a trivial project.
Does anyone know of any good code examples (in C# preferably), or any more good sites where EBCs are discussed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现 EBC 在概念上类似于基于事件的编程。您可以在 Ted Faison 的基于事件的编程中找到对该主题的全面论述,其中还包括三种复杂程度不同的系统(文件浏览器、http 服务和分布式工作流系统)的完整源代码——全部用 C# 编写。
I find EBCs conceptually similar to Event Based Programming. You'll find a comprehensive treatment of the subject in Ted Faison's Event Based Programming, which also includes the complete source code for three types of systems of varying complexity (a file browser, a http service and a distributed workflow system) -- all written in C#.