C#,没有float转换
如果是数字的话不用Convert: int i = 5; float f = (float)i; 如果是字符串的话: float实际上对应与System.Single Convert.ToSingle();