如何将int变量转换为字符串变量

时间:2018-12-20 15:25:37

标签: c# string integer

我当前正在从文本框中拆分字符串,用户将用三个数字填充该字符串。这些数字我想另存为整数。有什么帮助吗?感谢您的帮助!

string[] count = txtPoemInput.Text.Split('/');  //Splitting values for keyword numbers

int Poem, Line, Word;

count[0] = Poem.ToString; // Example
count[1] = Line;          // Example
count[2] = Word;

1 个答案:

答案 0 :(得分:0)

这是您需要做的。使用Convert.ToInt32

geom_density