Using keywords as identifiers in F#

拜拜、爱过 提交于 2019-11-26 12:45:55

问题


In C#, I can do the following:

int @private = 15;

And in VB.NET, I can do the following:

Dim [Private] As Integer = 15

I am wondering if there is a way in F# to use reserved keywords as identifiers, like there is in VB.NET and C#?


回答1:


Given section 3.4 of the F# 2.0 spec:

Identifiers follow the specification below. Any sequence of characters that is enclosed in double-backtick marks (`` ``), excluding newlines, tabs, and double-backtick pairs themselves, is treated as an identifier.

I suspect you can put it in backticks:

``private``

I haven't tried it though.



来源:https://stackoverflow.com/questions/6639688/using-keywords-as-identifiers-in-f

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!