在C代码中,它会是这样的:
if (c != 0) { //some code ...}
在F#中怎么样?
答案 0 :(得分:48)
从MSDN's page on F# arithmetic operators开始,您似乎想要x <> 0
。
答案 1 :(得分:10)
答案 2 :(得分:9)
除了其他答案,您还可以使用模式匹配:
match c with
| 0 -> () //do nothing
| _ -> ... //do something
答案 3 :(得分:5)
&LT;&GT;用于不平等
(1<>2)