c#,将整数和字符串连接到var中
本文关键字:连接 var 字符串 整数 | 更新日期: 2023-09-27 18:15:23
如何将整数和字符串连接到var中?
int a; int x=2; int y=7200;
a=x*y;
var B=a+"D"; // How to concatenate this to turn it 14400D
// I need use this in the code that changes the AxisX.LabelStyle.Interval.
// We can not use string concatenation here.
chart1.ChartAreas[0].AxisX.LabelStyle.Interval=B;
.Interval
接受双精度,你能不能把整型转换成双精度?
chart1.ChartAreas[0].AxisX.LabelStyle.Interval = Convert.toDouble(a);
- <
- 间隔方法/gh>
- toDouble
查看您的代码。我觉得你需要这个密码看起来。
int a; int x = 2; int y = 7200;
a = x * y;
var B = a.ToString() + "D";
chart1.ChartAreas[0].AxisX.LabelStyle.Interval = B;
OR
int a; int x = 2; int y = 7200;
a = x * y;
String aValue = a.ToString() + "D";
var B = aValue;
chart1.ChartAreas[0].AxisX.LabelStyle.Interval = B;
完全正确,如果你需要这个,那么我建议第一个
将int a;
改为double a;
和:
chart1.ChartAreas[0].AxisX.LabelStyle.Interval = a;