2014-06-06 52 views
-4

這是vb.net代碼 任何一個可以轉換該線C# 懇求幫我...代碼轉換vb.net到C#的請求幫我

Public Class Form1 

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 
    If (Val(TextBox1.Text) > 0) Then 
     Label1.Text = "OK " 
    End If 
End Sub 
End Class 
+0

任何人都可以轉換op的英語嗎?世界上「繩索」是什麼意思?和'請求'? –

回答

1

試試這個:

protected void Button1_Click(object sender, EventArgs e) 
{ 
    if(Convert.ToInt32(textbox1.Text) > 0) 
    { 
     Label1.Text = "OK" 
    } 
} 
+0

它的工作...非常感謝 – user3646864