在F#中使用关键字作为成员名称

时间:2014-05-31 13:34:26

标签: f#

F#是否允许使用关键字的名称定义成员?

type Fruit =
  val type : string

在C#中可以使用@:

class Fruit 
{
    string @type;
}

1 个答案:

答案 0 :(得分:4)

使用双反推:

type Fruit =
    val ``type`` : string