F# 中的全局常量 - 如何
我需要设置一个版本号,以供多个相关项目在 AssemblyVersion 属性中使用。
在 C# 中,我使用以下内容
public class Constants {
public const string Version = "1.2.3.4";
}
,然后可以按如下方式使用:
[assembly:AssemblyVersion(Constants.Version)]
F# 中的等效构造是什么。我所有尝试提出一个可以作为属性参数接受的绑定的尝试都没有成功。
I need to set a version number to be used in the AssemblyVersion attribute by several related projects.
In C# I use the following
public class Constants {
public const string Version = "1.2.3.4";
}
then it can be used as follows:
[assembly:AssemblyVersion(Constants.Version)]
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用属性
Library
:Use the attribute
Literal
:自从我自己踏入这个陷阱以来,我想我会分享给跟随者。
“字面量”要求字母以大写字母开头。当您尝试在模式匹配构造中使用文字时,这会打击您。
参考:
文字属性不起作用
Since I stepped into this trap myself I thought I'd share for anyone following.
A 'Literal' requires that the letter starts with a capital letter. This will hit you when you try to use the literal in a pattern matching construct.
Reference:
Literal attribute not working