Interactive 中的 F# 错误,但命令行 REPL 中没有
F# errors in Interactive but not in command line REPL
在 Visual Studio F# Interactive window 中 运行 时会出现错误,但在命令行 F# REPL 或 Rider 中不会。
let numbers = [1..10]
let numberFilter number = number % 5 = 0 || number % 3 = 0
;;
error FS0193: internal error: Index not found. (Exception from HRESULT: 0x80131124)
- 找不到什么索引
- 为什么它只能在命令行 REPL 中工作?
答案是 Visual Studio 弄错了内裤。
右键单击并重置 F# window 解决了问题。仍然不知道是什么原因造成的。
在 Visual Studio F# Interactive window 中 运行 时会出现错误,但在命令行 F# REPL 或 Rider 中不会。
let numbers = [1..10]
let numberFilter number = number % 5 = 0 || number % 3 = 0
;;
error FS0193: internal error: Index not found. (Exception from HRESULT: 0x80131124)
- 找不到什么索引
- 为什么它只能在命令行 REPL 中工作?
答案是 Visual Studio 弄错了内裤。
右键单击并重置 F# window 解决了问题。仍然不知道是什么原因造成的。