F#中的全局常量-如何 [英] Global constants in F# - how to

查看:118
本文介绍了F#中的全局常量-如何的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要设置几个相关项目在AssemblyVersion属性中使用的版本号。

I need to set a version number to be used in the AssemblyVersion attribute by several related projects.

在C#中,我使用以下

public class Constants {
    public const string Version = "1.2.3.4";
}

然后可以按以下方式使用:

then it can be used as follows:

[assembly:AssemblyVersion(Constants.Version)]

F#中的等效构造是什么。我所有试图提出可以被接受为属性参数的绑定的尝试都没有用。

What would be the equivalent construct in F#. All my attempts to come up with a binding which can be accepted as an attribute argument did not work.

推荐答案

使用属性< a href = http://msdn.microsoft.com/zh-cn/library/ee353581(VS.100).aspx rel = noreferrer> 文学

[<Literal>] 
let version = "1.2.3.4"

[<assembly:AssemblyVersion(version)>]

这篇关于F#中的全局常量-如何的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆