标签: c# omnisharp
我刚刚设置了Sublime Text和OmniSharp进行C#开发,我突然遇到了这个警告。当我用float作为参数编写函数时,它会发出此警告。
例如,在height为float的类中,此函数
height
float
public void SetHeight(float h) { height = h; }
给予Warning : Parameter can be IComparable。实际的C#编译器并没有警告它。
Warning : Parameter can be IComparable
错误究竟意味着什么,我应该如何解决?