2

整数と文字列を 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;
4

3 に答える 3

2

あなたのコードを見てください。このコードが必要だと思います。

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;

まさにあなたの要件がこれなら、最初のものをお勧めします。

于 2013-05-27T09:02:21.213 に答える
2

.Interval代わりに int を double に変換できませんか?

chart1.ChartAreas[0].AxisX.LabelStyle.Interval = Convert.toDouble(a);
于 2013-05-27T09:03:06.230 に答える
1

int a;書く代わりにdouble a;

chart1.ChartAreas[0].AxisX.LabelStyle.Interval = a;
于 2013-05-27T09:19:32.683 に答える