这个Akka.NET代码有什么问题?

时间:2017-08-27 15:43:07

标签: f# akka akka.net

我花了一些时间搜索Akka.NET F#API。找不到它,即使有很好的C#文档。我发现下面的代码,日期为2017年3月,看起来不错,但不幸的是,当我尝试运行它时会产生异常。

两个问题:

1)下面的代码有什么问题?

2)是否有Akka.Net F#API的在线文档,如果是,它在哪里?

观察:我尝试了在线发现的其他几个F#Akka.NET片段,并且所有这些片段都产生了异常。

代码的URL是:

https://www.seventeencups.net/building-a-mud-with-f-sharp-and-akka-net-part-one/

以下是我试图运行的代码:

System.TypeLoadException: Method 'WatchWith' in type '-ctor@270' from assembly 'Akka.FSharp, Version=1.2.3.41, Culture=neutral, PublicKeyToken=null' does not have an implementation

异常消息包括以下内容:

{{1}}

1 个答案:

答案 0 :(得分:4)

在Akka.NET v1.3中引入了

WatchWith方法,而您正在使用Akka.FSharp v1.2.3。您需要将Akka依赖关系降级回1.2.3(此时此时尚未在v1.3中提供Akka.FSharp)。