Stylecop - 确定是 Double 还是 Float
我正在使用 Stylecop 制定一些自定义规则,并尝试确定我是否有双精度型或浮点数。
我能够遍历该语句并获得 CSTokenType。 CSTokenType 是数字,可以作为字符串读取。但由于它只是一个数字,我没有真正的方法知道它是 int、float、long、double 还是其他类型。
关于如何检查原始类型是什么的任何想法?
I'm using Stylecop to come up with some custom rules and I'm trying to determine if I have a double or a float.
I'm able to walk through the statement and get a CSTokenType. The CSTokenType is number and can be read as a string. But since it's just a Number I have no real way of knowing if it's an int, float , long , double or whatever.
Any ides on how I can check to see what the primitive type is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑
要确定数字文字是双精度型还是浮点数,您必须检查 CsToken.Text 中是否存在以及如果是,哪个后缀(当 CsTokenType == CsTokenType.Number 时)。
一些示例:
来源: http://msdn.microsoft.com/en-us/library/aa691085(v=VS.71).aspx 和 http://msdn.microsoft.com/en-us /library/aa664674(v=VS.71).aspx
EDIT
To decide whether a number literal is a double or float, you have to check if and if yes, which suffix is present in CsToken.Text (when CsTokenType == CsTokenType.Number).
Some examples:
source: http://msdn.microsoft.com/en-us/library/aa691085(v=VS.71).aspx and http://msdn.microsoft.com/en-us/library/aa664674(v=VS.71).aspx