1

我正在尝试学习 F#,并且正在研究 Suduko Solver 程序 [链接在这里] ( http://www.ffconsultancy.com/dotnet/fsharp/sudoku/code/1/sudoku.fs )!原始程序是在 Visual Studio 2005 中开发的;但是当我尝试使用 Microsoft Visual Studio 2010 再次构建它时,我遇到了一些错误。我手动添加了对 System.Drawing 和 System.Windows.Forms 的引用,但 VS2010 似乎仍然无法识别 Idoms。有什么想法可以让这个程序在 VS2010 下编译吗?

4

1 回答 1

2

所以修复错误消息

需要进行以下替换

n -> string_of_int n : n->n.ToString()
Byte.of_int 0        : 0uy
IEnumurable          : Seq
m.(y).(i)            : m.[y].[i] //this appears with similar syntax a few times - just need to change round to square brackets

不知道为什么你init_control没有定义它可能会在其他东西修复后没问题。

于 2013-04-22T11:05:37.937 回答