您好,最近我决定尝试在不使用Unity的情况下缩小尺寸。当我遇到YouTube教程将文本更改为整数以进行加法时,它说

Dim firstNum As Integer = CInt(txtAddVal1.Text)
Dim secondNum As Integer = CInt(txtAddVal2.Text)


我能够将代码从以前的经验更改为int firstNumber =,这里的问题是我不知道如何将CInt转换为现在实际存在的变量。我正在使用Windows应用程序窗体(.NET)。

最佳答案

您在此处使用的代码是VB.NET,而不是C#。 VB.NET中的CInt()可以用C#中的(int)variable替换

int firstNum = (int)txtAddVal1.Text
int secondNum = (int)txtAddVal2.Text


其他选项是int.Parse()int.TryParse()

https://www.dotnetperls.com/parse

关于c# - YouTube上的教程正在使用CInt(不存在),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47000415/

10-09 03:16