问题
-
当试着进入到运行模式,接收到下方的警告信息:
error CS0664: Literal of type double cannot be implicitly converted to type `float'. Add suffix `f' to create a literal of this type
原因
当声明浮点数但没有添加`f'后缀时,或输入具有小数的数字时,会导致CS0664错误。 请参见下面的示例。
解决方案
错误CS0664可以通过将'f'后缀添加到赋值给float的值的末尾得以解决。 请参见下面的示例。
更多信息
For more information please read https://msdn.microsoft.com/en-us/library/h9w1wc66.aspx